• Stefano Sabatini's avatar
    ffprobe: fix uninitialized variable warning · 7bac6e5c
    Stefano Sabatini authored
    Fix warning:
    ffprobe.c:1684:21: warning: ‘start’ may be used uninitialized in this function [-Wmaybe-uninitialized] end = start + interval->end;
    
    The warning is a false positive, since the variable is accessed only if
    has_start is set, and in that case start has been already set.
    7bac6e5c
ffprobe.c 96 KB