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
20adc792
Commit
20adc792
authored
Apr 21, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Remove unused variable.
parent
68975938
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
install.c
dlls/mshtml/install.c
+1
-2
No files found.
dlls/mshtml/install.c
View file @
20adc792
...
...
@@ -93,7 +93,7 @@ static void set_registry(LPCSTR install_dir)
WCHAR
mshtml_key
[
100
];
LPWSTR
gecko_path
;
HKEY
hkey
;
DWORD
res
,
len
,
size
;
DWORD
res
,
len
;
static
const
WCHAR
wszGeckoPath
[]
=
{
'G'
,
'e'
,
'c'
,
'k'
,
'o'
,
'P'
,
'a'
,
't'
,
'h'
,
0
};
static
const
WCHAR
wszWineGecko
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
'_'
,
'g'
,
'e'
,
'c'
,
'k'
,
'o'
,
0
};
...
...
@@ -120,7 +120,6 @@ static void set_registry(LPCSTR install_dir)
memcpy
(
gecko_path
+
len
,
wszWineGecko
,
sizeof
(
wszWineGecko
));
size
=
len
*
sizeof
(
WCHAR
)
+
sizeof
(
wszWineGecko
);
res
=
RegSetValueExW
(
hkey
,
wszGeckoPath
,
0
,
REG_SZ
,
(
LPVOID
)
gecko_path
,
len
*
sizeof
(
WCHAR
)
+
sizeof
(
wszWineGecko
));
heap_free
(
gecko_path
);
...
...
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