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
4a6ed210
Commit
4a6ed210
authored
Jun 07, 2010
by
Andrew Eikum
Committed by
Alexandre Julliard
Jun 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regedit: Escape the value name portion during export.
parent
f26b6631
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
regproc.c
programs/regedit/regproc.c
+5
-0
No files found.
programs/regedit/regproc.c
View file @
4a6ed210
...
...
@@ -1126,6 +1126,11 @@ static void export_hkey(FILE *file, HKEY key,
if
((
*
val_name_buf
)[
0
])
{
const
WCHAR
val_start
[]
=
{
'"'
,
'%'
,
's'
,
'"'
,
'='
,
0
};
line_len
=
0
;
REGPROC_export_string
(
line_buf
,
line_buf_size
,
&
line_len
,
*
val_name_buf
,
lstrlenW
(
*
val_name_buf
));
REGPROC_resize_char_buffer
(
val_name_buf
,
val_name_size
,
lstrlenW
(
*
line_buf
)
+
1
);
lstrcpyW
(
*
val_name_buf
,
*
line_buf
);
line_len
=
3
+
lstrlenW
(
*
val_name_buf
);
REGPROC_resize_char_buffer
(
line_buf
,
line_buf_size
,
line_len
);
sprintfW
(
*
line_buf
,
val_start
,
*
val_name_buf
);
...
...
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