Commit 69d8e75a authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ieframe: Avoid memory leak (coverity).

parent 0f7bc2d8
...@@ -988,6 +988,7 @@ static HDDEDATA WINAPI dde_proc(UINT type, UINT uFmt, HCONV hConv, HSZ hsz1, HSZ ...@@ -988,6 +988,7 @@ static HDDEDATA WINAPI dde_proc(UINT type, UINT uFmt, HCONV hConv, HSZ hsz1, HSZ
if(DdeGetData(data, (BYTE*)url, size, 0) != size) { if(DdeGetData(data, (BYTE*)url, size, 0) != size) {
ERR("error during read\n"); ERR("error during read\n");
heap_free(url);
break; break;
} }
......
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