From f70b79178fb1af8a2a0cc8945ec9f37491638e4d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 27 Aug 2010 17:43:26 +0000 Subject: 2010-08-27 Joel Sherrill PR 1693/filesystem * libfs/src/imfs/memfile.c: IMFS_memfile_get_block_pointer() was checking incorrect pointer and thus had dead code. --- cpukit/libfs/src/imfs/memfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/libfs/src/imfs/memfile.c') diff --git a/cpukit/libfs/src/imfs/memfile.c b/cpukit/libfs/src/imfs/memfile.c index 9d1d55a06d..98616d1b36 100644 --- a/cpukit/libfs/src/imfs/memfile.c +++ b/cpukit/libfs/src/imfs/memfile.c @@ -931,7 +931,7 @@ block_p *IMFS_memfile_get_block_pointer( return 0; p2 = (block_p *)p1[ doubly ]; - if ( !p ) + if ( !p2 ) return 0; return (block_p *)&p2[ singly ]; -- cgit v1.2.3