From: Roel Kluin Date: Wed, 3 Aug 2011 00:52:38 +0000 (+1000) Subject: Don't dereference em if it's NULL or an error pointer. X-Git-Tag: next-20110810~2^2~67 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=21ebcb40ce995b56fbc8f528df76ed94b7eb0909;p=karo-tx-linux.git Don't dereference em if it's NULL or an error pointer. Signed-off-by: Roel Kluin Cc: Chris Mason Signed-off-by: Andrew Morton --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 15fceefbca0a..bb85e484da08 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1863,7 +1863,8 @@ static int btrfs_io_failed_hook(struct bio *failed_bio, read_lock(&em_tree->lock); em = lookup_extent_mapping(em_tree, start, failrec->len); - if (em->start > start || em->start + em->len < start) { + if (em && !IS_ERR(em) && (em->start > start || + em->start + em->len < start)) { free_extent_map(em); em = NULL; }