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
1e4d6904
Commit
1e4d6904
authored
Jul 11, 2007
by
gkodinov/kgeorge@magare.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed uninitialized variable introduced by the fix for bug 29325
parent
1f7a28bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
myisam/mi_create.c
myisam/mi_create.c
+2
-4
No files found.
myisam/mi_create.c
View file @
1e4d6904
...
@@ -586,8 +586,7 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
...
@@ -586,8 +586,7 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
32
:
0
));
32
:
0
));
linkname_ptr
=
0
;
linkname_ptr
=
0
;
/* Replace the current file */
/* Replace the current file */
if
(
!
(
flags
&
HA_CREATE_KEEP_FILES
))
create_flag
=
(
flags
&
HA_CREATE_KEEP_FILES
)
?
0
:
MY_DELETE_OLD
;
create_flag
=
MY_DELETE_OLD
;
}
}
/*
/*
...
@@ -648,8 +647,7 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
...
@@ -648,8 +647,7 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
{
{
fn_format
(
filename
,
name
,
""
,
MI_NAME_DEXT
,
4
);
fn_format
(
filename
,
name
,
""
,
MI_NAME_DEXT
,
4
);
linkname_ptr
=
0
;
linkname_ptr
=
0
;
if
(
!
(
flags
&
HA_CREATE_KEEP_FILES
))
create_flag
=
(
flags
&
HA_CREATE_KEEP_FILES
)
?
0
:
MY_DELETE_OLD
;
create_flag
=
MY_DELETE_OLD
;
}
}
if
((
dfile
=
if
((
dfile
=
my_create_with_symlink
(
linkname_ptr
,
filename
,
0
,
create_mode
,
my_create_with_symlink
(
linkname_ptr
,
filename
,
0
,
create_mode
,
...
...
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