Fix use freed pointer in return value from call thread

(issue ASTERISK-19663)
Reported by: Matt Jordan
Patches:
  ASTERISK-19663-ooh323.patch (License #5415)



git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@364649 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Alexandr Anikin
2012-04-30 16:37:33 +00:00
parent 2a6bdce6b4
commit 97787d8c5e

View File

@@ -124,7 +124,7 @@ void* ooh323c_call_thread(void* dummy)
free(mycthread);
ast_module_unref(myself);
ast_update_use_count();
return dummy;
return NULL;
}
int ooh323c_start_call_thread(ooCallData *call) {