From e67cc4e0356b657ea6d936d1b869d67ed166eaaf Mon Sep 17 00:00:00 2001 From: Eddie Runia Date: Tue, 20 Jul 1999 18:24:05 +0000 Subject: [PATCH] see changelog --- harbour/ChangeLog | 4 ++++ harbour/source/vm/hvm.c | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c2a129ead8..1041e87b58 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +19990720-20:10 CET Eddie Runia + * source/vm/hvm.c + wsize =*( (WORD *) ... part removed. + 19990720-13:40 EDT Paul Tucker * source/rtl/gtapi.c * If a color string of ("r/b,b/r" ) is used, the diff --git a/harbour/source/vm/hvm.c b/harbour/source/vm/hvm.c index 2c9a3266d6..38d563d580 100644 --- a/harbour/source/vm/hvm.c +++ b/harbour/source/vm/hvm.c @@ -559,11 +559,6 @@ void VirtualMachine( PBYTE pCode, PSYMBOL pSymbols ) break; case HB_P_PUSHSTR: -#ifdef __MPW__ - wSize = pCode[ w + 1 ] + ( pCode[ w + 2 ] * 256 ); -#else - wSize =*( (WORD *) &( pCode[ w + 1 ] ) ); -#endif wSize = pCode[ w + 1 ] + ( pCode[ w + 2 ] * 256 ); PushString( (char*)pCode + w + 3, wSize ); w += ( wSize + 3 );