Petr Malát <[email protected]> writes: > -char options[256]; /* The combined options */ > -char do_dont_resp[256]; > -char will_wont_resp[256]; > +char options[256] = { 0 }; /* The combined options */ > +char do_dont_resp[256] = { 0 }; > +char will_wont_resp[256] = { 0 };
This seems weird and should be a no-op -- global static variables should be initialized to zero by the compiler. /Simon
