mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-06 08:08:05 +02:00
_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:
parent
9c3034f125
commit
1b1d251f17
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue