Closed memory leak with lack of memory during character set conversion.
Coverity CID 12567.
This commit is contained in:
parent
d8fb8b26a6
commit
0433b7ea75
@ -729,8 +729,10 @@ int str2utf16be(const char *icharset, const char *input, uint16_t **output)
|
||||
loop_limit = inbytes + 3;
|
||||
|
||||
ret_ = malloc((2 * numchars+1) * sizeof(uint16_t));
|
||||
if (ret_ == NULL)
|
||||
if (ret_ == NULL) {
|
||||
free(wsrc_);
|
||||
return ISO_OUT_OF_MEM;
|
||||
}
|
||||
outbytes = 2 * numchars * sizeof(uint16_t);
|
||||
ret = ret_;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user