From a04718ad49be6ab9d095698d2e687c34634f6677 Mon Sep 17 00:00:00 2001 From: hartmann Date: Fri, 1 Jul 2005 09:36:05 +0000 Subject: [PATCH] Small fix. Now it also compiles with gcc2.95.3 git-svn-id: https://svn.dealii.org/trunk@11030 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/exceptions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc index 6398114d94..d91bc430ad 100644 --- a/deal.II/base/source/exceptions.cc +++ b/deal.II/base/source/exceptions.cc @@ -50,7 +50,7 @@ ExceptionBase::ExceptionBase (const char* f, const int l, const char *func, ExceptionBase::~ExceptionBase () throw () { - if (backtrace != 0) + if (stacktrace != 0) free (stacktrace); } -- 2.39.5