Skip to content
Snippets Groups Projects
Commit 013c3eb0 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/vf_drawtext: use gm_time_r() for thread saftey

parent a52cb42b
No related branches found
No related tags found
No related merge requests found
...@@ -855,7 +855,7 @@ static int func_strftime(AVFilterContext *ctx, AVBPrint *bp, ...@@ -855,7 +855,7 @@ static int func_strftime(AVFilterContext *ctx, AVBPrint *bp,
if (tag == 'L') if (tag == 'L')
localtime_r(&now, &tm); localtime_r(&now, &tm);
else else
tm = *gmtime(&now); tm = *gmtime_r(&now, &tm);
av_bprint_strftime(bp, fmt, &tm); av_bprint_strftime(bp, fmt, &tm);
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment