Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88986622 authored by Markus Elfring's avatar Markus Elfring Committed by Jan Kara
Browse files

isofs: Delete an error message for a failed memory allocation in isofs_read_inode()



Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
parent 434aafb5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -1321,7 +1321,6 @@ static int isofs_read_inode(struct inode *inode, int relocated)

		tmpde = kmalloc(de_len, GFP_KERNEL);
		if (tmpde == NULL) {
			printk(KERN_INFO "%s: out of memory\n", __func__);
			ret = -ENOMEM;
			goto fail;
		}