Commit 2169dd9a authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

shell32: Fix a memory leak (Coverity).

parent d36f50c4
...@@ -165,6 +165,7 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic, ...@@ -165,6 +165,7 @@ static inline HDDEDATA Dde_OnRequest(UINT uFmt, HCONV hconv, HSZ hszTopic,
{ {
free(groups_data); free(groups_data);
free(programs); free(programs);
FindClose(hfind);
return NULL; return NULL;
} }
groups_data = new_groups_data; groups_data = new_groups_data;
......
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