You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	Merge commit '09e1ccc8cddc946da5e10841f10dc5ebdd187d9d'
* commit '09e1ccc8cddc946da5e10841f10dc5ebdd187d9d':
  sctp: Use AVERROR_BUG instead of abort()
Conflicts:
	libavformat/sctp.c
See: 2e59142fa9
Merged-by: Michael Niedermayer <michaelni@gmx.at>
			
			
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user