From e65e31a8ba06f34b5118236a3db00a04fb3c51b7 Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 2 Jun 2008 21:57:29 +0000 Subject: [PATCH] Release some memory that we forgot to free. git-svn-id: https://svn.dealii.org/trunk@16276 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/news/changes.h | 9 +++++++++ deal.II/examples/step-33/step-33.cc | 1 + 2 files changed, 10 insertions(+) diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 620472a8d6..b493abdfbb 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -38,6 +38,15 @@ inconvenience this causes.

General

    +
  1. +

    + Fixed: The new @ref step_33 "step-33" tutorial program had a place where + we didn't release some memory. This is now fixed. +
    + (Chih-Che Chueh, WB 2008/06/02) +

    +
  2. +
  3. Fixed: A missing include file prevented the ./configure script diff --git a/deal.II/examples/step-33/step-33.cc b/deal.II/examples/step-33/step-33.cc index 1c45280b83..eab22fb815 100644 --- a/deal.II/examples/step-33/step-33.cc +++ b/deal.II/examples/step-33/step-33.cc @@ -2481,6 +2481,7 @@ assemble_cell_term (const FEValues &fe_v, right_hand_side(dof_indices[i]) -= F_i.val(); } + delete[] forcing; delete[] flux; } -- 2.39.5