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
2b1e487d
Commit
2b1e487d
authored
Jan 03, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jan 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Adjust the types of loop variables.
parent
0060027e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
table.c
dlls/msi/table.c
+4
-5
No files found.
dlls/msi/table.c
View file @
2b1e487d
...
...
@@ -481,7 +481,7 @@ end:
static
void
free_table
(
MSITABLE
*
table
)
{
int
i
;
UINT
i
;
for
(
i
=
0
;
i
<
table
->
row_count
;
i
++
)
msi_free
(
table
->
data
[
i
]
);
msi_free
(
table
->
data
);
...
...
@@ -1050,7 +1050,7 @@ static void msi_update_table_columns( MSIDATABASE *db, LPCWSTR name )
{
MSITABLE
*
table
;
UINT
size
,
offset
,
old_count
;
int
n
;
UINT
n
;
table
=
find_cached_table
(
db
,
name
);
old_count
=
table
->
col_count
;
...
...
@@ -1778,7 +1778,7 @@ static UINT TABLE_find_matching_rows( struct tagMSIVIEW *view, UINT col,
static
UINT
TABLE_add_ref
(
struct
tagMSIVIEW
*
view
)
{
MSITABLEVIEW
*
tv
=
(
MSITABLEVIEW
*
)
view
;
int
i
;
UINT
i
;
TRACE
(
"%p %d
\n
"
,
view
,
tv
->
table
->
ref_count
);
...
...
@@ -1829,8 +1829,7 @@ static UINT TABLE_release(struct tagMSIVIEW *view)
{
MSITABLEVIEW
*
tv
=
(
MSITABLEVIEW
*
)
view
;
INT
ref
=
tv
->
table
->
ref_count
;
int
i
;
UINT
r
;
UINT
i
,
r
;
TRACE
(
"%p %d
\n
"
,
view
,
ref
);
...
...
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