2013-08-26 20:56 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/compiler/hbdbginf.c
    ! fixed module names generated for debugger line info when user compiles
      files passing path with drive letters, i.e. hbmk2 c:\temp\test.prg
      Thanks to Anton Ryzhov for the information about the problem.
This commit is contained in:
Przemysław Czerpak
2013-08-26 20:56:58 +02:00
parent 0b4c999bb5
commit f9362d3d4d
2 changed files with 7 additions and 1 deletions

View File

@@ -10,6 +10,12 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-08-26 20:56 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/compiler/hbdbginf.c
! fixed module names generated for debugger line info when user compiles
files passing path with drive letters, i.e. hbmk2 c:\temp\test.prg
Thanks to Anton Ryzhov for the information about the problem.
2013-08-26 15:51 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/hbsocket.c
! fixed hb_socketConnect() with timeout in DOS Watt-32 builds.

View File

@@ -101,7 +101,7 @@ PHB_DEBUGINFO hb_compGetDebugInfo( HB_COMP_DECL )
{
int i;
ptr = strchr( pszModuleName, ':' );
ptr = strrchr( pszModuleName, ':' );
i = ptr ? ( int ) ( ptr - pszModuleName ) : ( int ) strlen( pszModuleName );
pInfo = pLineInfo;