From d0970a6699cdb70190f2b6e8fb77fa53361ec5d2 Mon Sep 17 00:00:00 2001 From: Francisco Santos Date: Tue, 21 Apr 2015 13:07:12 +0100 Subject: [PATCH] Fix wrong deletion. Change-Id: Ibcbba0859c7298e30e25716ffbd6b51f4f750a49 --- dali/internal/update/common/double-buffered.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali/internal/update/common/double-buffered.h b/dali/internal/update/common/double-buffered.h index 3ddb512..412e49c 100644 --- a/dali/internal/update/common/double-buffered.h +++ b/dali/internal/update/common/double-buffered.h @@ -198,7 +198,7 @@ public: if( current != previous ) { - delete previous; + delete current; } current = previous; -- 2.7.4