From: Eli Zaretskii Date: Wed, 22 Sep 2010 18:39:51 +0000 (+0200) Subject: w32.c (get_emacs_configuration_options): Fix last change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~47^2~42^2~97 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fc33e1531e1419780d0035aaa6cabbcb0ba4d58e;p=emacs.git w32.c (get_emacs_configuration_options): Fix last change. --- diff --git a/src/w32.c b/src/w32.c index 745642e946b..4024ed9512e 100644 --- a/src/w32.c +++ b/src/w32.c @@ -1963,6 +1963,7 @@ get_emacs_configuration_options (void) size += strlen (options[i]); options_buffer = xmalloc (size + 1); + options_buffer[0] = '\0'; for (i = 0; options[i]; i++) strcat (options_buffer, options[i]);