Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
45fb4ac4
Commit
45fb4ac4
authored
Aug 25, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Fix ASCII / ANSI mixups in comments.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ab9ba996
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
msipriv.h
dlls/msi/msipriv.h
+1
-1
package.c
dlls/msi/package.c
+1
-1
No files found.
dlls/msi/msipriv.h
View file @
45fb4ac4
...
...
@@ -735,7 +735,7 @@ struct tagMSIMIME
#define MSIHANDLE_MAGIC 0x4d434923
/* handle unicode/a
sci
i output in the Msi* API functions */
/* handle unicode/a
ns
i output in the Msi* API functions */
typedef
struct
{
BOOL
unicode
;
union
{
...
...
dlls/msi/package.c
View file @
45fb4ac4
...
...
@@ -1806,7 +1806,7 @@ INT MSI_ProcessMessageVerbatim(MSIPACKAGE *package, INSTALLMESSAGE eMessageType,
MSI_FormatRecordW
(
package
,
record
,
message
,
&
len
);
}
/* convert it to A
SCI
I */
/* convert it to A
NS
I */
len
=
WideCharToMultiByte
(
CP_ACP
,
0
,
message
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
msg
=
msi_alloc
(
len
);
WideCharToMultiByte
(
CP_ACP
,
0
,
message
,
-
1
,
msg
,
len
,
NULL
,
NULL
);
...
...
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