mirror of
https://github.com/json-c/json-c.git
synced 2026-03-22 14:39:07 +08:00
Merge pull request #861 from bhaible/handle-another-oom-condition
Handle yet another out-of-memory condition.
This commit is contained in:
@@ -341,6 +341,11 @@ struct json_object *json_tokener_parse_ex(struct json_tokener *tok, const char *
|
||||
#ifdef HAVE_USELOCALE
|
||||
{
|
||||
locale_t duploc = duplocale(oldlocale);
|
||||
if (duploc == NULL && errno == ENOMEM)
|
||||
{
|
||||
tok->err = json_tokener_error_memory;
|
||||
return NULL;
|
||||
}
|
||||
newloc = newlocale(LC_NUMERIC_MASK, "C", duploc);
|
||||
if (newloc == NULL)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user