dect
/
asterisk
Archived
13
0
Fork 0

Check pointers before freeing (was getting WARNINGS under MALLOC_DEBUG)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@97825 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twilson 2008-01-10 19:03:04 +00:00
parent 45f02f8778
commit 3d2e5fea00
2 changed files with 4 additions and 2 deletions

View File

@ -3963,7 +3963,8 @@ void *ast_yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner)
void ast_yyfree (void * ptr , yyscan_t yyscanner)
{
free( (char *) ptr ); /* see ast_yyrealloc() for (char *) cast */
if (ptr)
free( (char *) ptr ); /* see ast_yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"

View File

@ -135,7 +135,8 @@ static char *complete_fn(const char *word, int state)
c += (strlen(ast_config_AST_MODULE_DIR) + 1);
if (c)
c = ast_strdup(c);
free(d);
if (d)
free(d);
return c;
}