From 1cb3985a6916dd9dab77abbfbe1fe4881aa5bf5b Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 26 Jan 2013 09:34:12 +0000 Subject: [PATCH] [FREELDR] Return NULL, not FALSE on failure in Ext2ReadBlockPointerList svn path=/trunk/; revision=58219 --- reactos/boot/freeldr/freeldr/fs/ext2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/boot/freeldr/freeldr/fs/ext2.c b/reactos/boot/freeldr/freeldr/fs/ext2.c index b39ed32af6d..1e5432578bb 100644 --- a/reactos/boot/freeldr/freeldr/fs/ext2.c +++ b/reactos/boot/freeldr/freeldr/fs/ext2.c @@ -1049,7 +1049,7 @@ ULONG* Ext2ReadBlockPointerList(PEXT2_INODE Inode) if (!Ext2CopyIndirectBlockPointers(BlockList, &CurrentBlockInList, BlockCount, Inode->blocks.indir_block)) { MmHeapFree(BlockList); - return FALSE; + return NULL; } } @@ -1059,7 +1059,7 @@ ULONG* Ext2ReadBlockPointerList(PEXT2_INODE Inode) if (!Ext2CopyDoubleIndirectBlockPointers(BlockList, &CurrentBlockInList, BlockCount, Inode->blocks.double_indir_block)) { MmHeapFree(BlockList); - return FALSE; + return NULL; } } @@ -1069,7 +1069,7 @@ ULONG* Ext2ReadBlockPointerList(PEXT2_INODE Inode) if (!Ext2CopyTripleIndirectBlockPointers(BlockList, &CurrentBlockInList, BlockCount, Inode->blocks.tripple_indir_block)) { MmHeapFree(BlockList); - return FALSE; + return NULL; } }