mxfdec: Fix the error handling for when strftime fails
The str variable is a char ** here. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
@@ -1736,7 +1736,7 @@ static int mxf_timestamp_to_str(uint64_t timestamp, char **str)
|
|||||||
if (!*str)
|
if (!*str)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
if (!strftime(*str, 32, "%Y-%m-%d %H:%M:%S", &time))
|
if (!strftime(*str, 32, "%Y-%m-%d %H:%M:%S", &time))
|
||||||
str[0] = '\0';
|
(*str)[0] = '\0';
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user