1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 09:09:59 +02:00

udp: fix indention

This commit is contained in:
JULIAN GARDNER 2011-06-03 16:08:16 +02:00 committed by Michael Niedermayer
parent 25c32d082b
commit f35761bca2

View File

@ -518,7 +518,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
fail: fail:
if (udp_fd >= 0) if (udp_fd >= 0)
closesocket(udp_fd); closesocket(udp_fd);
av_fifo_free(s->fifo); av_fifo_free(s->fifo);
av_free(s); av_free(s);
return AVERROR(EIO); return AVERROR(EIO);
} }