X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/394c1797728f21b699a9cd8bfc16ea70f384c1e0..ac153baba6893597d9bfc0e22469736fbc5e6821:/sbr/encode_rfc2047.c diff --git a/sbr/encode_rfc2047.c b/sbr/encode_rfc2047.c index 75b5808f..0ded2e93 100644 --- a/sbr/encode_rfc2047.c +++ b/sbr/encode_rfc2047.c @@ -9,6 +9,7 @@ #include #include #include +#include "base64.h" #include "unquote.h" /* @@ -798,8 +799,8 @@ do_reformat: output = NULL; out: - mh_xfree(tmpbuf); - mh_xfree(output); + free(tmpbuf); + free(output); return errflag > 0; }