Surprisly clang started to tell me where variable may used uninitialized, correcting it!

That's a good point it tell me that, but was a bit unexpected ^^
This commit is contained in:
Godzil
2013-05-16 09:35:52 +02:00
committed by Manoël Trapier
parent c59e2f03ab
commit 0f10f91839
8 changed files with 15 additions and 13 deletions

View File

@@ -70,7 +70,7 @@ void substitute(FILE *lf, call_p c, line_p cal, line_p firstline)
* up to date.
*/
line_p l, text, lab;
line_p l, text = NULL, lab = NULL;
offset ab_off, lb_off;
line_p startscan, ncal;
short lastcid;