1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-27 13:21:11 +03:00

base64: Use SSH_BUFFER_FREE()

Fixes T183

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Andreas Schneider
2019-11-05 13:16:17 +01:00
parent 35799bb1c6
commit 3cf665a53d

View File

@@ -168,7 +168,7 @@ ssh_buffer base64_to_bin(const char *source) {
error: error:
SAFE_FREE(base64); SAFE_FREE(base64);
ssh_buffer_free(buffer); SSH_BUFFER_FREE(buffer);
return NULL; return NULL;
} }