commit | 0763aa280e621602bad5083fc959178ef19ad0b1 | [log] [tgz] |
---|---|---|
author | Andrew Hsieh <andrewhsieh@google.com> | Thu Mar 07 15:39:48 2013 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 07 15:39:48 2013 +0000 |
tree | f0bfd4ee50652df79fa8760038f63d56957a0337 | |
parent | b3c158932f74a78c3d5d98c594d99c81b78bcbd2 [diff] | |
parent | b99ba404ccf92f21f37c590f011d39285e3efcd3 [diff] |
Merge "Fix inifinite recursion in Gabi++ nothrow new[] operator."
diff --git a/sources/cxx-stl/gabi++/src/new.cc b/sources/cxx-stl/gabi++/src/new.cc index de9cf7d..8148556 100644 --- a/sources/cxx-stl/gabi++/src/new.cc +++ b/sources/cxx-stl/gabi++/src/new.cc
@@ -69,5 +69,5 @@ __attribute__ ((weak)) void* operator new[](std::size_t size, const std::nothrow_t& no) throw() { - return ::operator new[](size, no); + return ::operator new(size, no); }