Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
64a62d2e
Commit
64a62d2e
authored
Jun 20, 2008
by
Dan Kegel
Committed by
Alexandre Julliard
Jun 21, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advpack: Don't close a handle if it wasn't opened.
parent
ad0c267f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
advpack.c
dlls/advpack/advpack.c
+2
-2
No files found.
dlls/advpack/advpack.c
View file @
64a62d2e
...
...
@@ -70,7 +70,7 @@ static void get_dest_dir(HINF hInf, PCWSTR pszSection, PWSTR pszBuffer, DWORD dw
INFCONTEXT
context
;
WCHAR
key
[
MAX_PATH
+
2
],
value
[
MAX_PATH
+
2
];
WCHAR
prefix
[
PREFIX_LEN
+
2
];
HKEY
root
,
subkey
;
HKEY
root
,
subkey
=
0
;
DWORD
size
;
static
const
WCHAR
hklm
[]
=
{
'H'
,
'K'
,
'L'
,
'M'
,
0
};
...
...
@@ -102,7 +102,7 @@ static void get_dest_dir(HINF hInf, PCWSTR pszSection, PWSTR pszBuffer, DWORD dw
strip_quotes
(
pszBuffer
,
&
size
);
}
RegCloseKey
(
subkey
);
if
(
subkey
)
RegCloseKey
(
subkey
);
}
/* loads the LDIDs specified in the install section of an INF */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment