commit | 757ee19ca119b3434a6249a00b1c39c0d36fb449 | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.de> | Wed Aug 09 22:34:56 2006 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Aug 10 10:57:33 2006 +0200 |
tree | a3d7513d903d3c320c4927bdbaf6a5b33ced250c | |
parent | b40f4c0b177e1f94e55c80a6443d3c5dfbcce2d4 [diff] [blame] |
janitorial: Removed the rest of the redundant NULL checks before HeapFree.
diff --git a/dlls/setupapi/misc.c b/dlls/setupapi/misc.c index f9b1d86..c29da52 100644 --- a/dlls/setupapi/misc.c +++ b/dlls/setupapi/misc.c
@@ -767,8 +767,7 @@ fail:; dwError = GetLastError(); - if (pOwner != NULL) - MyFree(pOwner); + MyFree(pOwner); if (hToken != NULL) CloseHandle(hToken);