Update of /cvsroot/plib/plib/src/psl
In directory usw-pr-cvs1:/tmp/cvs-serv9700
Modified Files:
pslFileIO.cxx
Log Message:
Replaced instance of 'delete' with 'delete []'
Index: pslFileIO.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/psl/pslFileIO.cxx,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- pslFileIO.cxx 10 Sep 2002 23:05:55 -0000 1.3
+++ pslFileIO.cxx 10 Sep 2002 23:10:41 -0000 1.4
@@ -77,7 +77,7 @@
fclose ( fd ) ;
}
- delete fname ;
+ delete [] fname ;
}
void unGetChar ( int c )
|