mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-19 19:52:48 +00:00
Merged revisions 273565 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r273565 | russell | 2010-07-01 17:09:19 -0500 (Thu, 01 Jul 2010) | 7 lines Don't return a partially initialized datastore. If memory allocation fails in ast_strdup(), don't return a partially initialized datastore. Bad things may happen. (related to ABE-2415) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@273566 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -50,7 +50,10 @@ struct ast_datastore *__ast_datastore_alloc(const struct ast_datastore_info *inf
|
|||||||
|
|
||||||
datastore->info = info;
|
datastore->info = info;
|
||||||
|
|
||||||
datastore->uid = ast_strdup(uid);
|
if (!ast_strlen_zero(uid) && !(datastore->uid = ast_strdup(uid))) {
|
||||||
|
ast_free(datastore);
|
||||||
|
datastore = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return datastore;
|
return datastore;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user