shell32: Fix memory leak.

This commit is contained in:
Vincent Povirk 2014-05-21 11:02:14 -05:00 committed by Alexandre Julliard
parent e95938c2d6
commit ee13e10cf6
1 changed files with 1 additions and 0 deletions

View File

@ -572,6 +572,7 @@ void XDG_FreeParsedFile(XDG_PARSED_FILE *parsed)
SHFree(group);
group = next;
}
SHFree(parsed->contents);
SHFree(parsed);
}