_dbus_test_oom_handling: allow disabling it as documented

We documented DBUS_TEST_MALLOC_FAILURES=0 in HACKING, but it didn't
actually work: we'd iterate from i=-1 to i=0.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=93194
Reviewed-by: Ralf Habacker <ralf.habacker@freenet.de>
This commit is contained in:
Simon McVittie 2015-11-24 09:21:12 +00:00 committed by Ralf Habacker
parent 9c3034f125
commit 1b1d251f17

View file

@ -1066,6 +1066,12 @@ _dbus_test_oom_handling (const char *description,
max_failures_to_try = 4;
}
if (max_failures_to_try < 1)
{
_dbus_verbose ("not testing OOM handling\n");
return TRUE;
}
i = setting ? max_failures_to_try - 1 : 1;
while (i < max_failures_to_try)
{