At Fri, 19 Jul 2013 17:25:19 +0200, Justus Winter wrote: > +static char *path = NULL; > +static int insecure = 0;
Don't explicitly initialize static variables to 0 or NULL. This takes up unnecessary space in the executable and prevents using zero-filled memory. Neal