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
2c626c9d
Commit
2c626c9d
authored
Oct 06, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Handle null integers properly in transforms.
parent
5bbc6323
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
table.c
dlls/msi/table.c
+5
-5
No files found.
dlls/msi/table.c
View file @
2c626c9d
...
...
@@ -1679,15 +1679,15 @@ static MSIRECORD *msi_get_transform_record( MSITABLEVIEW *tv, string_table *st,
}
else
{
val
^=
0x8000
;
MSI_RecordSetInteger
(
rec
,
i
+
1
,
val
);
if
(
val
)
MSI_RecordSetInteger
(
rec
,
i
+
1
,
val
^
0x8000
);
TRACE
(
"[0x%04x]"
,
val
);
}
break
;
case
4
:
val
=
rawdata
[
ofs
]
+
(
rawdata
[
ofs
+
1
]
<<
16
);
/* val ^= 0x80000000; */
MSI_RecordSetInteger
(
rec
,
i
+
1
,
val
);
val
=
(
rawdata
[
ofs
]
+
(
rawdata
[
ofs
+
1
]
<<
16
)
);
if
(
val
)
MSI_RecordSetInteger
(
rec
,
i
+
1
,
val
^
0x80000000
);
TRACE
(
"[0x%08x]"
,
val
);
break
;
default:
...
...
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