mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	cleanup: Fix fread() and fwrite() error handling
Cleaned up some of the incorrect uses of fread() and fwrite(), mostly in the format modules. Neither of these functions will ever return a value less than 0, which we were checking for in some cases. I've introduced a fair amount of duplication in the format modules, but I plan to change how format modules work internally in a subsequent patch set, so this is simply a stop-gap. Change-Id: I8ca1cd47c20b2c0b72088bd13b9046f6977aa872
This commit is contained in:
		| @@ -66,8 +66,17 @@ static struct ast_frame *g723_read(struct ast_filestream *s, int *whennext) | ||||
| 	} | ||||
| 	/* Read the data into the buffer */ | ||||
| 	AST_FRAME_SET_BUFFER(&s->fr, s->buf, AST_FRIENDLY_OFFSET, size); | ||||
| 	if ((res = fread(s->fr.data.ptr, 1, s->fr.datalen, s->f)) != size) { | ||||
| 		ast_log(LOG_WARNING, "Short read (%d of %d bytes) (%s)!\n", res, size, strerror(errno)); | ||||
| 	if ((res = fread(s->fr.data.ptr, 1, s->fr.datalen, s->f)) != s->fr.datalen) { | ||||
| 		if (feof(s->f)) { | ||||
| 			if (res) { | ||||
| 				ast_log(LOG_WARNING, "Incomplete frame data at end of %s file " | ||||
| 						"(expected %d bytes, read %d)\n", | ||||
| 						ast_format_get_name(s->fr.subclass.format), s->fr.datalen, res); | ||||
| 			} | ||||
| 		} else { | ||||
| 			ast_log(LOG_ERROR, "Error while reading %s file: %s\n", | ||||
| 					ast_format_get_name(s->fr.subclass.format), strerror(errno)); | ||||
| 		} | ||||
| 		return NULL; | ||||
| 	} | ||||
| 	*whennext = s->fr.samples = 240; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user