Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4b13824c
Commit
4b13824c
authored
Jul 09, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for testOIBasic
parent
844a9387
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ndb/src/ndbapi/Ndbif.cpp
ndb/src/ndbapi/Ndbif.cpp
+4
-4
No files found.
ndb/src/ndbapi/Ndbif.cpp
View file @
4b13824c
...
...
@@ -564,17 +564,17 @@ Ndb::handleReceivedSignal(NdbApiSignal* aSignal, LinearSectionPtr ptr[3])
if
(
tFirstDataPtr
==
0
)
goto
InvalidSignal
;
if
(
tWaitState
!=
WAIT_TC_SEIZE
)
{
return
;
goto
InvalidSignal
;
}
//if
tCon
=
void2con
(
tFirstDataPtr
);
if
(
tCon
->
checkMagicNumber
()
!=
0
)
{
return
;
goto
InvalidSignal
;
}
//if
tReturnCode
=
tCon
->
receiveTCSEIZECONF
(
aSignal
);
if
(
tReturnCode
!=
-
1
)
{
theWaiter
.
m_state
=
NO_WAIT
;
}
else
{
return
;
goto
InvalidSignal
;
}
//if
break
;
}
...
...
@@ -702,7 +702,7 @@ Ndb::handleReceivedSignal(NdbApiSignal* aSignal, LinearSectionPtr ptr[3])
tDataPtr
+
ScanTabConf
::
SignalLength
,
tLen
-
ScanTabConf
::
SignalLength
);
}
if
(
tReturnCode
!=
-
1
)
if
(
tReturnCode
!=
-
1
&&
tWaitState
==
WAIT_SCAN
)
theWaiter
.
m_state
=
NO_WAIT
;
break
;
}
else
{
...
...
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