X-Git-Url: https://git.piment-noir.org/?p=deb_ffmpeg.git;a=blobdiff_plain;f=ffmpeg%2Flibavformat%2Fsctp.c;h=d7338950bd3a7f13bdefa6248b18747481de0fe6;hp=35b9ad15ab1894891760fc3a32faf4d3710e2402;hb=f6fa7814ccfe3e76514b36cf04f5cd3cb657c8cf;hpb=2ba45a602cbfa7b771effba9b11bb4245c21bc00 diff --git a/ffmpeg/libavformat/sctp.c b/ffmpeg/libavformat/sctp.c index 35b9ad1..d733895 100644 --- a/ffmpeg/libavformat/sctp.c +++ b/ffmpeg/libavformat/sctp.c @@ -298,7 +298,7 @@ static int sctp_write(URLContext *h, const uint8_t *buf, int size) info.sinfo_stream = AV_RB16(buf); if (info.sinfo_stream > s->max_streams) { av_log(h, AV_LOG_ERROR, "bad input data\n"); - return AVERROR(EINVAL); + return AVERROR_BUG; } ret = ff_sctp_send(s->fd, buf + 2, size - 2, &info, MSG_EOR); } else