From 3ac5cbeb08a2701a3c9e6ab5fb7aaa36309c8b40 Mon Sep 17 00:00:00 2001 From: Mo Chen Date: Mon, 9 May 2022 18:39:17 -0500 Subject: [PATCH] Remove incorrect comment from base64 functions These functions have been changed to use user-supplied string buffers instead of allocating. The comment is incorrect and confusing. --- include/tscore/ink_base64.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/tscore/ink_base64.h b/include/tscore/ink_base64.h index 1473a312a51..d71f68ed4d2 100644 --- a/include/tscore/ink_base64.h +++ b/include/tscore/ink_base64.h @@ -31,9 +31,6 @@ * authentication scheme does not require them. This implementation is * intended for web-related use, and line breaks are not implemented. * - * These routines return char*'s to malloc-ed strings. The caller is - * responsible for freeing the strings. - * */ // Encodes / Decodes into user supplied buffer. Returns number of bytes decoded bool ats_base64_encode(const char *inBuffer, size_t inBufferSize, char *outBuffer, size_t outBufSize, size_t *length);