From 31f1ef7923d49918f44ab90d00753a54fb100036 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Sun, 10 Nov 2013 15:20:21 +0100 Subject: [PATCH] Fix --- kernel/include/array.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/include/array.hpp b/kernel/include/array.hpp index e7cdf963..e5f8073a 100644 --- a/kernel/include/array.hpp +++ b/kernel/include/array.hpp @@ -114,9 +114,9 @@ public: } void reset(pointer_type p = pointer_type()){ - if(array!= p){ + if(array != p){ delete[] array; - array= nullptr; + array= p; } }