2009-06-12 11:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* source/debug/dbgentry.c
  * contrib/xhb/hbxml.c
  * contrib/hbbtree/hb_btree.c
    % hb_itemRelease( hb_itemReturn() ) -> hb_itemReturnRelease()

  * contrib/xhb/hbxml.c
    ! Applied this fix from xhb:
      2008-11-06 20:00 UTC+0100 Jose F. Gimenez <jfgimenez/at/wanadoo.es>
      ! 'Escape' characters, such &amp; or &quot; were not written correctly in node attribute values
      ! 'Escape' characters in the form &#NN; and &#xHH; were not allowed when reading
This commit is contained in:
Viktor Szakats
2009-06-12 09:03:14 +00:00
parent b3ae940405
commit caeeac68d5
4 changed files with 41 additions and 45 deletions

View File

@@ -1673,7 +1673,7 @@ HB_FUNC( __DBGGETEXPRVALUE )
if( pItem )
{
hb_storl( TRUE, 3 );
hb_itemRelease( hb_itemReturn( pItem ) );
hb_itemReturnRelease( pItem );
}
else
hb_storl( FALSE, 3 );
@@ -1684,7 +1684,7 @@ HB_FUNC( __DBGGETSOURCEFILES )
{
void * ptr = hb_parptr( 1 );
if( ptr )
hb_itemRelease( hb_itemReturn( hb_dbgGetSourceFiles( ptr ) ) );
hb_itemReturnRelease( hb_dbgGetSourceFiles( ptr ) );
}
HB_FUNC( __DBGISVALIDSTOPLINE )