From 9dc385b0245e5dbe0c78569a967e13a9dcdd89d0 Mon Sep 17 00:00:00 2001 From: Pritpal Bedi Date: Tue, 19 Apr 2011 23:21:34 +0000 Subject: [PATCH] 2011-04-19 16:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/gtwvg/gtwvg.c ! Reversed: previous commit. Was causing GPF. --- harbour/ChangeLog | 4 ++++ harbour/contrib/gtwvg/gtwvg.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index df746b7fba..ae7713620f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2011-04-19 16:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) + * contrib/gtwvg/gtwvg.c + ! Reversed: previous commit. Was causing GPF. + 2011-04-20 01:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg + Added experimental feature to filter out libs from the lib lists: diff --git a/harbour/contrib/gtwvg/gtwvg.c b/harbour/contrib/gtwvg/gtwvg.c index 0babb592b9..006b900dc2 100644 --- a/harbour/contrib/gtwvg/gtwvg.c +++ b/harbour/contrib/gtwvg/gtwvg.c @@ -642,7 +642,7 @@ static void hb_gt_wvt_AddCharToInputQueue( PHB_GTWVT pWVT, int iKey ) PHB_ITEM pEvParams = hb_itemNew( NULL ); hb_itemPutNI( pEvParams, iKey ); hb_gt_wvt_FireEvent( pWVT, HB_GTE_KEYBOARD, pEvParams ); - hb_itemRelease( pEvParams ); + // hb_itemRelease( pEvParams ); /* Under situations it GPF's */ } }