http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
425fc8d
)
d3dxof/tests: Remove redundant NULL check before HeapFree (Smatch).
author
Michael Stefaniuc
<mstefani@redhat.de>
Tue, 16 Dec 2008 12:10:58 +0000
(13:10 +0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Tue, 16 Dec 2008 13:08:40 +0000
(14:08 +0100)
dlls/d3dxof/tests/d3dxof.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/d3dxof/tests/d3dxof.c
b/dlls/d3dxof/tests/d3dxof.c
index 4bd52ca82110a0f3cc07b11b01c7d15aa785f2de..3315721416ca21ec125c116281353179e33a3a22 100644
(file)
--- a/
dlls/d3dxof/tests/d3dxof.c
+++ b/
dlls/d3dxof/tests/d3dxof.c
@@
-261,9
+261,7
@@
static void test_dump(void)
CloseHandle(hFile);
exit:
-
- if (pvData)
- HeapFree(GetProcessHeap(), 0, pvData);
+ HeapFree(GetProcessHeap(), 0, pvData);
}
START_TEST(d3dxof)