fixed converity issue ID 12109

buffer was not freed on rare error case
remotes/push_mirror/klin/altstr-yara
Kevin Lin 10 years ago
parent 143cf9b6fb
commit ab9611d4c1
  1. 4
      libclamav/pdfng.c

@ -181,8 +181,10 @@ char *pdf_convert_utf(char *begin, size_t sz)
}
#else
outbuf = cli_utf16_to_utf8(buf, sz2, UTF16_BOM);
if (!outbuf)
if (!outbuf) {
free(buf);
return NULL;
}
res = strdup(outbuf);
#endif

Loading…
Cancel
Save