msvcrt: Fix a TRACE message to avoid buffer overflow.

This commit is contained in:
qingdoa daoo 2006-04-04 18:21:26 -07:00 committed by Alexandre Julliard
parent 593665b6b9
commit 330978ec9b
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ int _putenv(const char *str)
char *dst;
int ret;
TRACE("%s\n", str);
TRACE("%s\n", debugstr_a(str));
if (!str)
return -1;