mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	Merged revisions 116463 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r116463 | russell | 2008-05-14 16:32:00 -0500 (Wed, 14 May 2008) | 4 lines Add ast_assert(), which can be used to handle fatal errors. It is only compiled in if dev-mode is enabled, and only aborts if DO_CRASH is defined. (inspired by issue #12650) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116469 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -659,8 +659,7 @@ struct ast_frame *ast_udptl_read(struct ast_udptl *udptl) | ||||
| 	if (res < 0) { | ||||
| 		if (errno != EAGAIN) | ||||
| 			ast_log(LOG_WARNING, "UDPTL read error: %s\n", strerror(errno)); | ||||
| 		if (errno == EBADF) | ||||
| 			CRASH; | ||||
| 		ast_assert(errno != EBADF); | ||||
| 		return &ast_null_frame; | ||||
| 	} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user