From 2d7b28ac98afd9950ebe561632f2586702e6fb36 Mon Sep 17 00:00:00 2001 From: apv Date: Thu, 7 Aug 2014 13:56:19 +0400 Subject: [PATCH] 0024834: Allocation of memory for exception message must not throw another exception Update of test case to eliminate 64-bit architecture from testing --- src/QABugs/QABugs_19.cxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/QABugs/QABugs_19.cxx b/src/QABugs/QABugs_19.cxx index b4c9700a4d..3a0e5efe4c 100755 --- a/src/QABugs/QABugs_19.cxx +++ b/src/QABugs/QABugs_19.cxx @@ -2295,6 +2295,11 @@ static Standard_Integer OCC24834 (Draw_Interpretor& di, Standard_Integer n, cons std::cout << "Usage : " << a[0] << "\n"; return 1; } + + if (sizeof (char*) > 4) { + std::cout << "64-bit architecture is not supported.\n"; + return 0; + } NCollection_List aList; const Standard_Integer aSmallBlockSize = 40;