pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
1996-05-15
1996-05-15 23:00:26 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
197d17a61a2a4245f0dc6c84ad8b279bcc246ee6 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
branches/E-12
warning removed
Rev: src/program.c:1.11
1154:
va_start(args,fmt); VSPRINTF(buf,fmt,args);
-
if(strlen(buf) >= sizeof(buf))
+
if(
(long)
strlen(buf) >=
(long)
sizeof(buf))
fatal("Buffer overflow in my_yyerror."); yyerror(buf);