diff win/dw.c @ 1404:56f311dc23f6

Changes to get the library building with Watcom on OS/2. These changes mean that VisualAge 3.0 will no longer build the library. Please use version 3.6 or higher.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 29 Nov 2011 15:25:41 +0000
parents 20c6d0c50c94
children 96460bd4c679
line wrap: on
line diff
--- a/win/dw.c	Mon Nov 28 05:49:27 2011 +0000
+++ b/win/dw.c	Tue Nov 29 15:25:41 2011 +0000
@@ -3998,7 +3998,7 @@
 int API dw_messagebox(char *title, int flags, char *format, ...)
 {
    va_list args;
-   char outbuf[1024];
+   char outbuf[1025] = { 0 };
    int rc;
 
    va_start(args, format);