projects
/
wine
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
26344ce
)
atl: Compare file handle to INVALID_HANDLE_VALUE to handle errors.
author
Jacek Caban
<jacek@codeweavers.com>
Tue, 6 Mar 2007 23:05:15 +0000
(
00:05
+0100)
committer
Alexandre Julliard
<julliard@winehq.org>
Wed, 7 Mar 2007 11:08:46 +0000
(12:08 +0100)
dlls/atl/registrar.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/atl/registrar.c
b/dlls/atl/registrar.c
index
6fa2fbd
..
353e113
100644
(file)
--- a/
dlls/atl/registrar.c
+++ b/
dlls/atl/registrar.c
@@
-479,7
+479,7
@@
static HRESULT file_register(Registrar *This, LPCOLESTR fileName, BOOL do_regist
HRESULT hres;
file = CreateFileW(fileName, GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_READONLY, NULL);
- if(file) {
+ if(file
!= INVALID_HANDLE_VALUE
) {
filelen = GetFileSize(file, NULL);
regstra = HeapAlloc(GetProcessHeap(), 0, filelen);
lres = ReadFile(file, regstra, filelen, NULL, NULL);