summaryrefslogtreecommitdiff
path: root/unittest
diff options
context:
space:
mode:
authormats@romeo.(none) <>2006-10-06 15:31:05 +0200
committermats@romeo.(none) <>2006-10-06 15:31:05 +0200
commitd4d26ba7d599096053fb15cea61f6bea4d11d4ad (patch)
treebacce208c70954e5ab55bde5d8e31391840ead28 /unittest
parentcb1fdf51650f65de26c1d433aabeec3d9b85c823 (diff)
parente762328b544d1ff67b9ae472d62df13c2987d2b9 (diff)
downloadmariadb-git-d4d26ba7d599096053fb15cea61f6bea4d11d4ad.tar.gz
Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl
into romeo.(none):/home/bk/b19459-mysql-5.1-new
Diffstat (limited to 'unittest')
-rw-r--r--unittest/mysys/base64-t.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mysys/base64-t.c b/unittest/mysys/base64-t.c
index 6d85964b20d..ccec0c77086 100644
--- a/unittest/mysys/base64-t.c
+++ b/unittest/mysys/base64-t.c
@@ -54,7 +54,7 @@ main(void)
/* Decode */
dst= (char *) malloc(base64_needed_decoded_length(strlen(str)));
- dst_len= base64_decode(str, strlen(str), dst);
+ dst_len= base64_decode(str, strlen(str), dst, NULL);
ok(dst_len == src_len, "Comparing lengths");
cmp= memcmp(src, dst, src_len);