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
d4631ba6
Commit
d4631ba6
authored
Mar 02, 2021
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msado15: Fix the name of the command_text variable.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
18742306
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
connection.c
dlls/msado15/connection.c
+4
-4
No files found.
dlls/msado15/connection.c
View file @
d4631ba6
...
...
@@ -339,7 +339,7 @@ static HRESULT WINAPI connection_Execute( _Connection *iface, BSTR command, VARI
{
struct
connection
*
connection
=
impl_from_Connection
(
iface
);
HRESULT
hr
;
ICommandText
*
comand_text
;
ICommandText
*
com
m
and_text
;
DBROWCOUNT
affected
;
IUnknown
*
rowset
;
_Recordset
*
recordset
;
...
...
@@ -349,12 +349,12 @@ static HRESULT WINAPI connection_Execute( _Connection *iface, BSTR command, VARI
if
(
connection
->
state
==
adStateClosed
)
return
MAKE_ADO_HRESULT
(
adErrObjectClosed
);
hr
=
create_command_text
(
connection
->
session
,
command
,
&
comand_text
);
hr
=
create_command_text
(
connection
->
session
,
command
,
&
com
m
and_text
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
ICommandText_Execute
(
comand_text
,
NULL
,
&
IID_IUnknown
,
NULL
,
&
affected
,
&
rowset
);
ICommandText_Release
(
comand_text
);
hr
=
ICommandText_Execute
(
com
m
and_text
,
NULL
,
&
IID_IUnknown
,
NULL
,
&
affected
,
&
rowset
);
ICommandText_Release
(
com
m
and_text
);
if
(
FAILED
(
hr
))
return
hr
;
...
...
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