rk_base64_encode(): set errno in all error cases
This commit is contained in:
@@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
@@ -61,6 +62,7 @@ rk_base64_encode(const void *data, int size, char **str)
|
|||||||
|
|
||||||
if (size > INT_MAX/4 || size < 0) {
|
if (size > INT_MAX/4 || size < 0) {
|
||||||
*str = NULL;
|
*str = NULL;
|
||||||
|
errno = ERANGE;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user