Changeset d79ef17 in rtems
- Timestamp:
- 03/23/01 14:02:02 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2c589337
- Parents:
- db501a3d
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/libfs/ChangeLog
rdb501a3d rd79ef17 1 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/memfile.c: Reapply fix from bug report from 4 Jose Sturniolo <jsturnio@nec.com.ar> where NULL pointer 5 was dereferenced when freeing a triply indirect file. 6 The fix was applied to the 4.5 release branch and not 7 the development branch. 8 1 9 2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/exec/libfs/src/imfs/memfile.c
rdb501a3d rd79ef17 510 510 for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) { 511 511 p = (block_p *) info->triply_indirect[i]; 512 if ( !p ) /* ensure we have a valid pointer */ 513 break; 512 514 for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) { 513 515 if ( p[j] ) { -
c/src/libfs/ChangeLog
rdb501a3d rd79ef17 1 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/memfile.c: Reapply fix from bug report from 4 Jose Sturniolo <jsturnio@nec.com.ar> where NULL pointer 5 was dereferenced when freeing a triply indirect file. 6 The fix was applied to the 4.5 release branch and not 7 the development branch. 8 1 9 2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/libfs/src/imfs/memfile.c
rdb501a3d rd79ef17 510 510 for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) { 511 511 p = (block_p *) info->triply_indirect[i]; 512 if ( !p ) /* ensure we have a valid pointer */ 513 break; 512 514 for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) { 513 515 if ( p[j] ) { -
cpukit/libfs/ChangeLog
rdb501a3d rd79ef17 1 2001-03-23 Joel Sherrill <joel@OARcorp.com> 2 3 * src/imfs/memfile.c: Reapply fix from bug report from 4 Jose Sturniolo <jsturnio@nec.com.ar> where NULL pointer 5 was dereferenced when freeing a triply indirect file. 6 The fix was applied to the 4.5 release branch and not 7 the development branch. 8 1 9 2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
cpukit/libfs/src/imfs/memfile.c
rdb501a3d rd79ef17 510 510 for ( i=0 ; i<IMFS_MEMFILE_BLOCK_SLOTS ; i++ ) { 511 511 p = (block_p *) info->triply_indirect[i]; 512 if ( !p ) /* ensure we have a valid pointer */ 513 break; 512 514 for ( j=0 ; j<IMFS_MEMFILE_BLOCK_SLOTS ; j++ ) { 513 515 if ( p[j] ) {
Note: See TracChangeset
for help on using the changeset viewer.