This website requires JavaScript.
Explore
Help
Sign In
walkero
/
cppcheck
Watch
1
Star
0
Fork
You've already forked cppcheck
0
Code
Issues
Pull Requests
Projects
Releases
1
Wiki
Activity
a5b0fd38fd
cppcheck
/
samples
/
outOfBounds
/
bad.c
8 lines
102 B
C
Raw
Normal View
History
Unescape
Escape
Fixing #3515 (Add samples/id/good|bad.cpp) http://sourceforge.net/apps/trac/cppcheck/ticket/3515
2012-01-22 14:52:31 +01:00
#
include
<stdio.h>
int
main
(
)
{
char
str
[
5
]
;
std.cfg: snprintf(NULL,0,) is legal. Fix some testcases in test/cfg as well
2015-02-22 14:25:25 +01:00
strcpy
(
str
,
"
0123456789abcdef
"
)
;
samples; Fixed missing return in non-void functions
2021-07-04 16:59:09 +02:00
return
0
;
Fixing #3515 (Add samples/id/good|bad.cpp) http://sourceforge.net/apps/trac/cppcheck/ticket/3515
2012-01-22 14:52:31 +01:00
}