Commit 330978ec authored by qingdoa daoo's avatar qingdoa daoo Committed by Alexandre Julliard

msvcrt: Fix a TRACE message to avoid buffer overflow.

parent 593665b6
......@@ -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;
......
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