summaryrefslogtreecommitdiff
path: root/src/memory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/memory.cc')
-rw-r--r--src/memory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.cc b/src/memory.cc
index 5e09d65..655c761 100644
--- a/src/memory.cc
+++ b/src/memory.cc
@@ -64,7 +64,7 @@ void* operator new(size_t size, const std::nothrow_t &) throw()
void *mem = malloc(size);
while (0 == mem)
{
- if (0 == new_handl)
+ if (0 != new_handl)
{
try
{