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
76275bea
Commit
76275bea
authored
Nov 05, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Nov 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Remove an unused parameter.
parent
cf8e9e33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
alter.c
dlls/msi/alter.c
+2
-2
No files found.
dlls/msi/alter.c
View file @
76275bea
...
...
@@ -76,7 +76,7 @@ static UINT ITERATE_columns(MSIRECORD *row, LPVOID param)
return
ERROR_SUCCESS
;
}
static
BOOL
check_column_exists
(
MSIDATABASE
*
db
,
MSIVIEW
*
columns
,
LPCWSTR
table
,
LPCWSTR
column
)
static
BOOL
check_column_exists
(
MSIDATABASE
*
db
,
LPCWSTR
table
,
LPCWSTR
column
)
{
MSIQUERY
*
view
;
MSIRECORD
*
rec
;
...
...
@@ -124,7 +124,7 @@ static UINT alter_add_column(MSIALTERVIEW *av)
if
(
r
!=
ERROR_SUCCESS
)
return
r
;
if
(
check_column_exists
(
av
->
db
,
columns
,
av
->
colinfo
->
table
,
av
->
colinfo
->
column
))
if
(
check_column_exists
(
av
->
db
,
av
->
colinfo
->
table
,
av
->
colinfo
->
column
))
return
ERROR_BAD_QUERY_SYNTAX
;
r
=
MSI_OpenQuery
(
av
->
db
,
&
view
,
query
,
av
->
colinfo
->
table
,
av
->
colinfo
->
column
);
...
...
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