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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f60b5672
Commit
f60b5672
authored
Apr 06, 2013
by
Olivier Bertrand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Bug fix: Variable rc could used uninitialized when tracing is on.
modified: storage/connect/filamvct.cpp
parent
806ca8dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
storage/connect/filamvct.cpp
storage/connect/filamvct.cpp
+4
-4
No files found.
storage/connect/filamvct.cpp
View file @
f60b5672
...
...
@@ -1031,7 +1031,7 @@ bool VCTFAM::CleanUnusedSpace(PGLOBAL g)
/***********************************************************************/
void
VCTFAM
::
CloseTableFile
(
PGLOBAL
g
)
{
int
rc
,
wrc
=
RC_OK
;
int
rc
=
0
,
wrc
=
RC_OK
;
MODE
mode
=
Tdbp
->
GetMode
();
if
(
mode
==
MODE_INSERT
)
{
...
...
@@ -1705,7 +1705,7 @@ int VCMFAM::DeleteRecords(PGLOBAL g, int irc)
/***********************************************************************/
void
VCMFAM
::
CloseTableFile
(
PGLOBAL
g
)
{
int
rc
,
wrc
=
RC_OK
;
int
rc
=
0
,
wrc
=
RC_OK
;
MODE
mode
=
Tdbp
->
GetMode
();
if
(
mode
==
MODE_INSERT
)
{
...
...
@@ -2416,7 +2416,7 @@ int VECFAM::RenameTempFile(PGLOBAL g)
/***********************************************************************/
void
VECFAM
::
CloseTableFile
(
PGLOBAL
g
)
{
int
rc
,
wrc
=
RC_OK
;
int
rc
=
0
,
wrc
=
RC_OK
;
MODE
mode
=
Tdbp
->
GetMode
();
if
(
mode
==
MODE_INSERT
)
{
...
...
@@ -4063,7 +4063,7 @@ bool BGVFAM::CleanUnusedSpace(PGLOBAL g)
/***********************************************************************/
void
BGVFAM
::
CloseTableFile
(
PGLOBAL
g
)
{
int
rc
,
wrc
=
RC_OK
;
int
rc
=
0
,
wrc
=
RC_OK
;
MODE
mode
=
Tdbp
->
GetMode
();
if
(
mode
==
MODE_INSERT
)
{
...
...
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