Commit 80e919b1 authored by Sean McGovern's avatar Sean McGovern

rmdec: add missing brackets to compound statement

Accidentally left out of 95ce02b3.
parent 550cb6a8
......@@ -784,10 +784,11 @@ ff_rm_parse_packet (AVFormatContext *s, AVIOContext *pb,
return ret;
rm_ac3_swap_bytes(st, pkt);
}
} else
} else {
ret = av_get_packet(pb, pkt, len);
if (ret < 0)
return ret;
}
pkt->stream_index = st->index;
......
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