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
d689d415
Commit
d689d415
authored
Aug 14, 2005
by
serg@sergbook.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgotten 'return'
parent
03291902
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
.bzrignore
.bzrignore
+2
-0
sql/sql_class.cc
sql/sql_class.cc
+2
-2
No files found.
.bzrignore
View file @
d689d415
...
...
@@ -1121,3 +1121,5 @@ vio/test-ssl
vio/test-sslclient
vio/test-sslserver
vio/viotest-ssl
support-files/MacOSX/postflight
support-files/MacOSX/preflight
sql/sql_class.cc
View file @
d689d415
...
...
@@ -1863,8 +1863,8 @@ static void xid_free_hash (void *ptr)
bool
xid_cache_init
()
{
pthread_mutex_init
(
&
LOCK_xid_cache
,
MY_MUTEX_INIT_FAST
);
hash_init
(
&
xid_cache
,
&
my_charset_bin
,
100
,
0
,
0
,
xid_get_hash_key
,
xid_free_hash
,
0
)
!=
0
;
return
hash_init
(
&
xid_cache
,
&
my_charset_bin
,
100
,
0
,
0
,
xid_get_hash_key
,
xid_free_hash
,
0
)
!=
0
;
}
void
xid_cache_free
()
...
...
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