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
9f894272
Commit
9f894272
authored
Jul 24, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Use CLSIDFromString to make squash_guid a bit more robust.
parent
bc673bff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
14 deletions
+8
-14
registry.c
dlls/msi/registry.c
+8
-14
No files found.
dlls/msi/registry.c
View file @
9f894272
...
...
@@ -189,39 +189,33 @@ BOOL unsquash_guid(LPCWSTR in, LPWSTR out)
BOOL
squash_guid
(
LPCWSTR
in
,
LPWSTR
out
)
{
DWORD
i
,
n
=
0
;
DWORD
i
,
n
=
1
;
GUID
guid
;
if
(
in
[
n
++
]
!=
'{'
)
if
(
FAILED
(
CLSIDFromString
((
LPOLESTR
)
in
,
&
guid
))
)
return
FALSE
;
for
(
i
=
0
;
i
<
8
;
i
++
)
out
[
7
-
i
]
=
in
[
n
++
];
if
(
in
[
n
++
]
!=
'-'
)
return
FALSE
;
n
++
;
for
(
i
=
0
;
i
<
4
;
i
++
)
out
[
11
-
i
]
=
in
[
n
++
];
if
(
in
[
n
++
]
!=
'-'
)
return
FALSE
;
n
++
;
for
(
i
=
0
;
i
<
4
;
i
++
)
out
[
15
-
i
]
=
in
[
n
++
];
if
(
in
[
n
++
]
!=
'-'
)
return
FALSE
;
n
++
;
for
(
i
=
0
;
i
<
2
;
i
++
)
{
out
[
17
+
i
*
2
]
=
in
[
n
++
];
out
[
16
+
i
*
2
]
=
in
[
n
++
];
}
if
(
in
[
n
++
]
!=
'-'
)
return
FALSE
;
n
++
;
for
(
;
i
<
8
;
i
++
)
{
out
[
17
+
i
*
2
]
=
in
[
n
++
];
out
[
16
+
i
*
2
]
=
in
[
n
++
];
}
out
[
32
]
=
0
;
if
(
in
[
n
++
]
!=
'}'
)
return
FALSE
;
if
(
in
[
n
])
return
FALSE
;
return
TRUE
;
}
...
...
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