msvcrt: Fix a TRACE message to avoid buffer overflow.
This commit is contained in:
parent
593665b6b9
commit
330978ec9b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue