Commit a628412f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

user.exe16: Remove redundant HeapReAlloc.

parent 8c3ed829
...@@ -3288,9 +3288,6 @@ DWORD WINAPI FormatMessage16( ...@@ -3288,9 +3288,6 @@ DWORD WINAPI FormatMessage16(
*t='\0'; *t='\0';
} }
talloced = strlen(target)+1; talloced = strlen(target)+1;
if (nSize && talloced<nSize) {
target = HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,target,nSize);
}
TRACE("-- %s\n",debugstr_a(target)); TRACE("-- %s\n",debugstr_a(target));
if (dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER) { if (dwFlags & FORMAT_MESSAGE_ALLOCATE_BUFFER) {
/* nSize is the MINIMUM size */ /* nSize is the MINIMUM size */
......
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