From: hartmann Date: Fri, 1 Jul 2005 09:36:05 +0000 (+0000) Subject: Small fix. Now it also compiles with gcc2.95.3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a04718ad49be6ab9d095698d2e687c34634f6677;p=dealii-svn.git Small fix. Now it also compiles with gcc2.95.3 git-svn-id: https://svn.dealii.org/trunk@11030 0785d39b-7218-0410-832d-ea1e28bc413d --- 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); }