mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-04 05:15:22 +00:00 
			
		
		
		
	Fix crash with res_fax when MALLOC_DEBUG and "core stop gracefully" are used.
Asterisk crashes if MALLOC_DEBUG is enabled when res_fax tries to unregister its logger level. * Make ast_logger_unregister_level() use ast_free() instead of free(). When MALLOC_DEBUG is enabled, ast_free() does not degenerate into a call to free(). Therefore, if you allocated memory with a form of ast_malloc you must free it with ast_free. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@334953 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		@@ -1661,7 +1661,7 @@ void ast_logger_unregister_level(const char *name)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		global_logmask &= ~(1 << x);
 | 
							global_logmask &= ~(1 << x);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		free(levels[x]);
 | 
							ast_free(levels[x]);
 | 
				
			||||||
		levels[x] = NULL;
 | 
							levels[x] = NULL;
 | 
				
			||||||
		AST_RWLIST_UNLOCK(&logchannels);
 | 
							AST_RWLIST_UNLOCK(&logchannels);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user