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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user