MT#60258 prevent possible null dereference

Change-Id: I8e661067d83c3a292f2ec43cd7fd129d8e3f01a7
(cherry picked from commit bee6275cf9)
mr10.5
Richard Fuchs 12 months ago
parent baee6eced4
commit 7207d9d0e5

@ -52,6 +52,8 @@ static void meta_destroy(metafile_t *mf) {
// close all streams
for (int i = 0; i < mf->streams->len; i++) {
stream_t *stream = g_ptr_array_index(mf->streams, i);
if (!stream)
continue;
pthread_mutex_lock(&stream->lock);
stream_close(stream);
pthread_mutex_unlock(&stream->lock);

Loading…
Cancel
Save