Changed not to free the memory which is returned to the caller, bug 50413 , r=rhp.

This commit is contained in:
nhotta%netscape.com 2000-09-14 19:50:30 +00:00
parent 7cb77d3fad
commit 3e1ac87145

View File

@ -763,11 +763,11 @@ mime_convert_rfc1522 (const char *input_line, PRInt32 input_length,
*output_ret = convertedString;
*output_size_ret = nsCRT::strlen(convertedString);
}
PR_FREEIF(converted);
}
if (line != input_line)
PR_Free(line);
PR_FREEIF(converted);
return 0;
}