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
33bb96d9
Commit
33bb96d9
authored
Nov 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/Users/kent/mysql/bk/mysql-5.0
parents
76199a50
b4c996a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
mysys/base64.c
mysys/base64.c
+4
-3
No files found.
mysys/base64.c
View file @
33bb96d9
...
...
@@ -15,7 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <base64.h>
#include <m_string.h> /
/ strchr()
#include <m_string.h>
/
* strchr() */
#ifndef MAIN
...
...
@@ -134,7 +134,8 @@ base64_decode(const char *src, size_t size, void *dst)
{
char
b
[
3
];
size_t
i
=
0
;
unsigned
char
*
d
=
(
unsigned
char
*
)
dst
;
char
*
dst_base
=
(
char
*
)
dst
;
char
*
d
=
dst_base
;
size_t
j
;
while
(
i
<
size
)
...
...
@@ -193,7 +194,7 @@ base64_decode(const char *src, size_t size, void *dst)
{
return
-
1
;
}
return
d
-
(
unsigned
char
*
)
dst
;
return
d
-
dst_base
;
}
...
...
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