diff options
author | mats@romeo.(none) <> | 2006-10-02 15:05:05 +0200 |
---|---|---|
committer | mats@romeo.(none) <> | 2006-10-02 15:05:05 +0200 |
commit | 7b85fb5c13f4a2a56d1bbc27f47afb5b70fa5d0d (patch) | |
tree | 62b9d132849411843dc55238f4f494e86ed7ff28 /include/base64.h | |
parent | a424aa339ec550b4ebb23c55ec4e5ea912d2090e (diff) | |
download | mariadb-git-7b85fb5c13f4a2a56d1bbc27f47afb5b70fa5d0d.tar.gz |
BUG#19459 (BINLOG RBR command does not lock tables correctly causing
crash for, e.g., NDB):
Submitting patch to base64_decode() adding extra parameter.
Diffstat (limited to 'include/base64.h')
-rw-r--r-- | include/base64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/base64.h b/include/base64.h index 4653e824a9a..a6bffebfe07 100644 --- a/include/base64.h +++ b/include/base64.h @@ -39,7 +39,8 @@ int base64_encode(const void *src, size_t src_len, char *dst); /* Decode a base64 string into data */ -int base64_decode(const char *src, size_t src_len, void *dst); +int base64_decode(const char *src, size_t src_len, + void *dst, const char **end_ptr); #ifdef __cplusplus |