Commit Graph

15686 Commits

Author SHA1 Message Date
orbitcowboy 26f0ee6703 windows.cfg and gnu.cfg: Improved support for strtok-functions. 2017-02-22 10:27:05 +01:00
Robert Reif 8e0f1ec788 Fixed (Crash in CheckMemoryLeakInClass) 2017-02-20 23:09:35 +01:00
Daniel Marjamäki 873513665b Merge pull request from simartin/ticket_7916
Ticket : Don't incorrectly simplify return statements involving template instantiations.
2017-02-20 22:24:09 +01:00
Simon Martin 487f76cdd1 Ticket : Don't incorrectly simplify return statements involving template instantiations. 2017-02-18 21:14:50 +01:00
Daniel Marjamäki 774a8979a3 Fixed (False positive: (warning) Return value of function to_string() is not used.) 2017-02-12 16:50:45 +01:00
Daniel Marjamäki 7c800d6ed7 Fixed (FP: ignoredReturnValue on C++11 uniform initialization) 2017-02-12 16:33:28 +01:00
amai2012 f1bf5cc4e2 Merge pull request from simartin/ticket_7465
Ticket : Added test case highlighting the issue has been fixed
2017-02-11 21:49:44 +01:00
Simon Martin 0c0fe4605a Ticket : Added test case highlighting the issue has been fixed since it's been reported. 2017-02-11 17:55:51 +01:00
Simon Martin 326d152aa2 Ticket : Properly recognize template parameters that contains operators. () 2017-02-11 10:13:41 +01:00
PKEuS 7de055361c windows.cfg: Added several functions 2017-02-07 19:08:24 +01:00
amai2012 1d0b647072 false positive: "Memory leak" error after mmap return MAP_FAILED. define MAP_FAILED in posix.cfg. 2017-02-07 12:14:55 +01:00
Matthias Krüger 6f1e7e897d simplify if(tok && Token::{simple,}Match) to if(Token::{simple,}Match). 2017-02-06 15:37:12 +01:00
amai2012 f3f3567f16 Merge pull request from simartin/ticket_7891
Ticket : Do not remove spaces in the internal representation for template instantiations.
2017-02-05 20:08:34 +01:00
Simon Martin 0943b2145b Ticket : Do not remove spaces in the internal representation for template instantiations. 2017-02-05 17:35:29 +01:00
orbitcowboy beb72c2583 Revert changes from 9cb0941df2. 2017-02-02 15:53:52 +01:00
orbitcowboy 9cb0941df2 std.cfg: Take the return value from fread() into account. 2017-02-02 13:33:06 +01:00
PKEuS ae444d7e78 windows.cfg: Added PostMessage() 2017-02-02 13:23:37 +01:00
Matthias Krüger f80e888b7e run astyle
[ci-skip]
2017-01-31 16:22:31 +01:00
Matthias Krüger 92d9e810f3 templatesimplifier: remove redundant assignments inside switchcase. They will always be overwritten by an assignment outside of the switch near the end of the function. Found by clang analyzer. 2017-01-30 22:26:54 +01:00
alexander d846217641 false positive: (error) Null pointer dereference (tempnam) 2017-01-29 17:09:48 +01:00
amai2012 7ae0b2b336 Merge pull request from simartin/ticket_7440
Ticket : Function calls should not abort pointer alias analysis for local variables.
2017-01-28 01:32:52 +01:00
Simon Martin 5262ed018e Ticket : Function calls should not abort pointer alias analysis for local variables. 2017-01-27 22:56:28 +01:00
umanamente a012e5b5fb (Fixed ) Syntax error when using C++11 braced-initializer in function last argument
Add an optional extended description…
2017-01-23 12:50:36 +01:00
umanamente 2f609c2b9a Added cppcheck.natvis file for human readable debug information in Visual Studio.
Add an optional extended description…
2017-01-22 10:21:29 +01:00
umanamente 0c1ba8e8b4 (Fixed ) C++11 brace initialization. Added test. ()
Add an optional extended description…
2017-01-22 10:16:40 +01:00
PKEuS 3022d74801 Do not suggest pass by reference for std::initializer_list 2017-01-19 11:14:55 +01:00
amai2012 722fac391d Merge pull request from simartin/ticket_7820
Ticket : Properly report leaks with conditional deallocations followed by a return.
2017-01-18 09:31:49 +01:00
Simon Martin 9e76b21d7f Ticket : Properly report leaks with conditional deallocations followed by a return. 2017-01-17 23:02:39 +01:00
Matthias Krüger 9e2650db96 reduce: main(): replace "return false;" by "return EXIT_FAILURE;", clang 4 warned about this:
tools/reduce.cpp:771:17: warning: bool literal returned from 'main' [-Wmain]
                return false;
                ^      ~~~~~
tools/reduce.cpp:776:17: warning: bool literal returned from 'main' [-Wmain]
                return false;
                ^      ~~~~~
tools/reduce.cpp:782:17: warning: bool literal returned from 'main' [-Wmain]
                return false;
                ^      ~~~~~
2017-01-17 01:32:29 +01:00
orbitcowboy 6c71d74563 Cleanup: There is no need to clear a string directly after its creation. 2017-01-16 20:10:28 +01:00
Simon Martin ae939b1385 Teach CheckMemoryLeak about "alloc ; loop alloc ;" kinds of patterns. ()
Add an optional extended description…
2017-01-15 22:16:23 +01:00
Simon Martin c82d8a0d06 Ticket : Simplify "alloc ; dealloc ;" blocks that we don't have any value for CheckMemoryLeak's analysis. ()
Add an optional extended description…
2017-01-15 22:14:37 +01:00
amai2012 982991fabe FP : Buffer is accessed out of bounds when using strncmp() with short string literal. Correct std.cfg 2017-01-11 17:45:24 +01:00
Daniel Marjamäki 47d39d0a14 Revert "Fixed (1.77 false positive from knownConditionTrueFalse with sizeof(int) == sizeof(long))"
This reverts commit a762511067.
2017-01-10 13:22:48 +01:00
Daniel Marjamäki 7bdd001a5f SymbolDatabase: Removed redundant 'else' 2017-01-09 22:48:05 +01:00
Daniel Marjamäki b7321e8dde Tokenizer: Rename struct 2017-01-09 22:40:30 +01:00
Daniel Marjamäki a762511067 Fixed (1.77 false positive from knownConditionTrueFalse with sizeof(int) == sizeof(long)) 2017-01-09 22:28:55 +01:00
Daniel Marjamäki b1f7e46491 Fixed (valueflow: global variables) 2017-01-09 15:53:08 +01:00
Daniel Marjamäki 24996300a5 Merge pull request from simartin/ticket_7548
Ticket : Properly detect the end of template parameter default values during instantiation
2017-01-08 16:39:33 +01:00
Simon Martin 417c7e36c0 Ticket : Properly detect the end of template parameter default values during instantiation. 2017-01-08 09:38:29 +01:00
Matthias Krüger d4dcef4a30 add testcase for (crash in libreoffice, failure to create AST for comparison) which I still had in some branch. 2017-01-08 02:36:21 +01:00
Matthias Krüger 064a4aa4cc improve constness of functions as per cppchecks suggestions. 2017-01-07 14:31:03 +01:00
orbitcowboy 3a742fdeb1 Merge pull request from simartin/ticket_7850
Ticket : Properly handle C functions called "class".
2017-01-06 22:07:45 +01:00
Simon Martin bd92ddd386 Ticket : Properly handle C functions called "class". 2017-01-06 21:16:28 +01:00
Daniel Marjamäki c2a1c4056f astyle formatting
[ci skip]
2017-01-06 12:04:36 +01:00
Daniel Marjamäki 436ba256ce Merge pull request from mwjohnson/patch-1
Example of ignoring multiple directories
2017-01-06 11:56:49 +01:00
Robert Reif 4123b457d7 Fixed (SymbolDatabase: No scope when function return type not specified) 2017-01-06 11:53:17 +01:00
Matt Johnson 6bf77955bd Example of ignoring multiple directories
Add documentation for showing how to ignore multiple directories.
Also highlight the fact that the -i option does not currently work in conjunction with the --project option.
2017-01-06 13:16:06 +09:00
alexander 8eeb09ba88 Add typeid to library 2017-01-05 20:38:56 +01:00
Robert Reif 139071d88b Fixed (New check: function declaration and definition argument names don't match) 2017-01-05 08:52:11 +01:00