From: Roel Kluin Date: Sat, 16 Jul 2011 13:30:55 +0000 (+1000) Subject: Don't dereference em if it's NULL or an error pointer. X-Git-Tag: next-20110726~2^2~64 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=91ab26f0b043c6216bc03ea73324c82f1e73d833;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 e91b097e7252..1694e378a919 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1864,7 +1864,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; }