From cac5f29b2a80ff03ee91864d6a9a0a5f05871292 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Sat, 13 Mar 2010 08:18:32 +0000 Subject: [PATCH] 2010-03-13 09:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/vm/hvmall.c * minor cleanup --- harbour/ChangeLog | 4 ++++ harbour/src/vm/hvmall.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0a18ec8cb9..55cbe0c5a3 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-03-13 09:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/vm/hvmall.c + * minor cleanup + 2010-03-13 09:02 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbstack.h * harbour/src/vm/estack.c diff --git a/harbour/src/vm/hvmall.c b/harbour/src/vm/hvmall.c index 1ac9a868dd..ef8ed39c55 100644 --- a/harbour/src/vm/hvmall.c +++ b/harbour/src/vm/hvmall.c @@ -87,9 +87,9 @@ # if defined( HB_MT_VM ) # if defined( HB_USE_TLS ) # if defined( __BORLANDC__ ) - static PHB_STACK HB_TLS_ATTR hb_stack_ptr; + static PHB_STACK HB_TLS_ATTR hb_stack_ptr = NULL; # else - static HB_TLS_ATTR PHB_STACK hb_stack_ptr; + static HB_TLS_ATTR PHB_STACK hb_stack_ptr = NULL; # endif # else static HB_TLS_KEY hb_stack_key;