2009-06-25 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/hbqt_qhttp.cpp
  * contrib/hbqt/hbqt_qftp.cpp
    ! Commented with TOFIX comment two compilation errors
      reported on the list, to allow full Harbour build.
    ; TOFIX: Fix hb_parc() returned buffer passed directly
             to QT to return data. This would previously
             cause HVM corruption, not with 'const' it's
             caught by compiler.
This commit is contained in:
Viktor Szakats
2009-06-26 07:36:06 +00:00
parent 9e3ae49cb6
commit 831f08e5e3
3 changed files with 14 additions and 2 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-25 09:35 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/hbqt_qhttp.cpp
* contrib/hbqt/hbqt_qftp.cpp
! Commented with TOFIX comment two compilation errors
reported on the list, to allow full Harbour build.
; TOFIX: Fix hb_parc() returned buffer passed directly
to QT to return data. This would previously
cause HVM corruption, not with 'const' it's
caught by compiler.
2009-06-26 03:16 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbvm.h
* harbour/include/hbapicdp.h

View File

@@ -221,7 +221,9 @@ HB_FUNC( QT_QFTP_RAWCOMMAND )
*/
HB_FUNC( QT_QFTP_READ )
{
/* TOFIX:
hb_retnint( hbqt_par_QFtp( 1 )->read( hbqt_par_char( 2 ), hb_parnint( 3 ) ) );
*/
}
/*
@@ -292,4 +294,3 @@ HB_FUNC( QT_QFTP_ABORT )
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/

View File

@@ -199,7 +199,9 @@ HB_FUNC( QT_QHTTP_POST_1 )
*/
HB_FUNC( QT_QHTTP_READ )
{
/* TOFIX:
hb_retnint( hbqt_par_QHttp( 1 )->read( hbqt_par_char( 2 ), hb_parnint( 3 ) ) );
*/
}
/*
@@ -294,4 +296,3 @@ HB_FUNC( QT_QHTTP_ABORT )
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/