[PATCH] btrfs-progs: add malloc check in transaction.h/btrfs_start_transaction

2012-08-16 Thread Wang Sheng-Hui
For malloc may fail, we should check it before assign values to the fields of struct btrfs_trans_handle *h. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- transaction.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/transaction.h b/transaction.h index

Re: [PATCH] btrfs-progs: add malloc check in transaction.h/btrfs_start_transaction

2012-08-16 Thread Arne Jansen
On 16.08.2012 09:57, Wang Sheng-Hui wrote: For malloc may fail, we should check it before assign values to the fields of struct btrfs_trans_handle *h. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- transaction.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff

Re: [PATCH] btrfs-progs: add malloc check in transaction.h/btrfs_start_transaction

2012-08-16 Thread Jie Liu
On 08/16/12 16:03, Arne Jansen wrote: On 16.08.2012 09:57, Wang Sheng-Hui wrote: For malloc may fail, we should check it before assign values to the fields of struct btrfs_trans_handle *h. Signed-off-by: Wang Sheng-Hui shh...@gmail.com --- transaction.h |5 + 1 files changed, 5

Re: [PATCH] btrfs-progs: add malloc check in transaction.h/btrfs_start_transaction

2012-08-16 Thread Wang Sheng-Hui
regenerated. Please check it. Thanks, From 5a265e252e87a8a456a6615affd57dfb49900c64 Mon Sep 17 00:00:00 2001 From: Wang Sheng-Hui shh...@gmail.com Date: Thu, 16 Aug 2012 20:14:32 +0800 Subject: [PATCH] btrfs-progs: add malloc check in transaction.h/btrfs_start_transaction For malloc may fail, we