btrfs-progs: add memory allocation fail check in btrfs_add_to_fsid()
authorByongho Lee <bhlee.kernel@gmail.com>
Thu, 27 Aug 2015 15:38:18 +0000 (00:38 +0900)
committerDavid Sterba <dsterba@suse.com>
Mon, 31 Aug 2015 17:25:14 +0000 (19:25 +0200)
commit657e520a111601918feff9ce957ea19d9b18d0dd
treedc84e72b40fa271a36d63a3ed9d96478f5b0bd9b
parent6e381418904027a9f968e97403add5bda03fb319
btrfs-progs: add memory allocation fail check in btrfs_add_to_fsid()

In btrfs_add_to_fsid(), strdup() allocates memory to device->name, but
the return value is not checked.
So add the return value check and error handling code.
And clean-up error handling code for ENOMEM case.

Signed-off-by: Byongho Lee <bhlee.kernel@gmail.com>
Signed-off-by: David Sterba <dsterba@suse.com>
utils.c