On Jan 15, 2006, at 8:48 PM, drab at kepler dot fjfi dot cvut dot cz
wrote:
------- Comment #9 from drab at kepler dot fjfi dot cvut dot cz
2006-01-16 01:48 -------
OK, so how about this, couldn't this be an issue?
--- opts.c.old 2006-01-15 23:36:53.000000000 +0100
+++ opts.c 2006-01-16 02:48:17.000000000 +0100
@@ -1291,7 +1291,7 @@ print_filtered_help (unsigned int flag)
unsigned int i, len, filter, indent = 0;
bool duplicates = false;
const char *help, *opt, *tab;
- static char *printed;
+ static char *printed = NULL;
No because static variables are initialized to 0 by default by the C
standard.
-- Pinski