Merge "res_pjproject.c: Fix ast_strdup() alloc failure."

This commit is contained in:
Joshua Colp 2017-11-08 07:38:45 -06:00 committed by Gerrit Code Review
commit 698ff5b4cb
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ static void capture_buildopts_cb(int level, const char *data, int len)
}
dup = ast_strdup(ast_skip_blanks(data));
if (AST_VECTOR_ADD_SORTED(&buildopts, dup, strcmp)) {
if (dup && AST_VECTOR_ADD_SORTED(&buildopts, dup, strcmp)) {
ast_free(dup);
}
}