]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_pjproject: Fix cleanup of buildopts vector.
authorCorey Farrell <git@cfware.com>
Tue, 10 Oct 2017 03:51:03 +0000 (23:51 -0400)
committerCorey Farrell <git@cfware.com>
Tue, 10 Oct 2017 04:17:35 +0000 (23:17 -0500)
ASTERISK-27306

Change-Id: I3bed0edf3f55b1d4adcbabb25ec14f11dc766c72

res/res_pjproject.c

index 2566baf784a513444476077f66869ff452bc4c9e..93694fae1c0a4c28c7aad0ccfa6ef2ba81dd1b95 100644 (file)
@@ -546,7 +546,7 @@ static int unload_module(void)
        pj_log_set_log_func(log_cb_orig);
        pj_log_set_decor(decor_orig);
 
-       AST_VECTOR_REMOVE_CMP_UNORDERED(&buildopts, NULL, NOT_EQUALS, ast_free);
+       AST_VECTOR_CALLBACK_VOID(&buildopts, ast_free);
        AST_VECTOR_FREE(&buildopts);
 
        ast_debug(3, "Stopped PJPROJECT logging to Asterisk logger\n");