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
e4cfee01
Commit
e4cfee01
authored
Nov 29, 2005
by
knielsen@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More Win32 byte* vs. char* fixes.
parent
0da7c255
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/sql_plugin.cc
sql/sql_plugin.cc
+2
-2
No files found.
sql/sql_plugin.cc
View file @
e4cfee01
...
...
@@ -208,14 +208,14 @@ static struct st_plugin_int *plugin_find_internal(LEX_STRING *name, int type)
for
(
i
=
0
;
i
<
MYSQL_MAX_PLUGIN_TYPE_NUM
;
i
++
)
{
struct
st_plugin_int
*
plugin
=
(
st_plugin_int
*
)
hash_search
(
&
plugin_hash
[
i
],
name
->
str
,
name
->
length
);
hash_search
(
&
plugin_hash
[
i
],
(
const
byte
*
)
name
->
str
,
name
->
length
);
if
(
plugin
)
DBUG_RETURN
(
plugin
);
}
}
else
DBUG_RETURN
((
st_plugin_int
*
)
hash_search
(
&
plugin_hash
[
type
],
name
->
str
,
name
->
length
));
hash_search
(
&
plugin_hash
[
type
],
(
const
byte
*
)
name
->
str
,
name
->
length
));
DBUG_RETURN
(
0
);
}
...
...
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