tiff: fix leak on error return in doubles2str()
Fixes CID733797 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
9ba2484ece
commit
4b20b21b8d
@ -216,8 +216,10 @@ static char *doubles2str(double *dp, int count, const char *sep)
|
|||||||
ap[0] = '\0';
|
ap[0] = '\0';
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
unsigned l = snprintf(ap, component_len, "%f%s", dp[i], sep);
|
unsigned l = snprintf(ap, component_len, "%f%s", dp[i], sep);
|
||||||
if(l >= component_len)
|
if(l >= component_len) {
|
||||||
|
av_free(ap0);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
ap += l;
|
ap += l;
|
||||||
}
|
}
|
||||||
ap0[strlen(ap0) - strlen(sep)] = '\0';
|
ap0[strlen(ap0) - strlen(sep)] = '\0';
|
||||||
|
Loading…
Reference in New Issue
Block a user