Commit 17f9626b authored by Michael Niedermayer's avatar Michael Niedermayer

tiff/doubles2str: check for truncation

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0196bc6f
...@@ -215,7 +215,9 @@ static char *doubles2str(double *dp, int count, const char *sep) ...@@ -215,7 +215,9 @@ static char *doubles2str(double *dp, int count, const char *sep)
ap0 = ap; ap0 = ap;
ap[0] = '\0'; ap[0] = '\0';
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
int 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)
return NULL;
ap += l; ap += l;
} }
ap0[strlen(ap0) - strlen(sep)] = '\0'; ap0[strlen(ap0) - strlen(sep)] = '\0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment