Custom Query (31 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1 - 3 of 31)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#21 fixed creating directory %TMP% Andreas Schnellbacher abwillis
Description

I just built the latest svn and from whatever directory I run epm a directory name %TMP% gets created with a nepmd in side it: E:/SVNCODE/NEPMD/SRC/%TMP%/NEPMD/BACKUP

#22 invalid change config.sy call to run abwillis
Description

I am suggesting changing the call statement for the cachef32 in config.sys be changed to run.

Index: lib/fat32_010.wis
===================================================================
--- lib/fat32_010.wis	(revision 197)
+++ lib/fat32_010.wis	(working copy)
@@ -148,7 +148,7 @@
   SELECT
   NODESELECT
   CONFIGSYS="SET PATH=$(3);|ADDRIGHT"
-  CONFIGSYS="call=$(3)\cachef32.exe /f /p:2 /m:50000 /b:250 /d:5000 | UNIQUE(cachef32.exe) ADDAFTER(fat32.ifs)"
+  CONFIGSYS="run=$(3)\cachef32.exe /f /p:2 /m:50000 /b:250 /d:5000 | UNIQUE(cachef32.exe) ADDAFTER(fat32.ifs)"
 >
 </PCK>
 

#25 fixed Potential memory leak Andreas Schnellbacher abwillis
Description

I ran cppcheck looking for possible uninitialized variables as I have seen crashes when doing a lot of scrolling. I did not find any but found a potential memory leak. I'll let you evaluate and decide if this is meaningful.

Index: src/gui/nepmdlib/nepmdlib.c
===================================================================
--- src/gui/nepmdlib/nepmdlib.c	(revision 2946)
+++ src/gui/nepmdlib/nepmdlib.c	(working copy)
@@ -1032,7 +1032,7 @@
          HCONFIG        hconfig;
 
          CHAR           szResult[ 20];
-         PMODEINFO      pmi = malloc( 1024);
+         PMODEINFO      pmi = NULL;
 
 FUNCENTER;
 
@@ -1076,6 +1076,8 @@
    } while (FALSE);
 
 FUNCEXITRC;
+if (pmi)
+  free( pmi);
 return _getRexxError( rc, pszBuffer, ulBuflen);
 }
 
1 2 3 4 5 6 7 8 9 10 11
Note: See TracQuery for help on using queries.