Commit 222d74ae authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

char pointer must be 11 byte to fit 10 characters + \0.

parent 694f7899
......@@ -553,7 +553,7 @@ static int pf_vsnprintf( pf_output *out, const WCHAR *format, va_list valist )
/* output a pointer */
else if( flags.Format == 'p' )
{
char pointer[10];
char pointer[11];
flags.PadZero = 0;
if( flags.Alternate )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment