public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] UBI: Fix potential NULL-pointer dereference
@ 2014-03-28 21:04 Alexander Stein
  2014-03-31  6:18 ` Mats Kärrman
  0 siblings, 1 reply; 4+ messages in thread
From: Alexander Stein @ 2014-03-28 21:04 UTC (permalink / raw)
  To: Artem Bityutskiy, David Woodhouse; +Cc: Alexander Stein, linux-mtd

It's no use to debug print a string before checking on NULL.

Signed-off-by: Alexander Stein <alexanders83@web.de>
---
 drivers/mtd/ubi/kapi.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c
index 3aac1ac..e40864f 100644
--- a/drivers/mtd/ubi/kapi.c
+++ b/drivers/mtd/ubi/kapi.c
@@ -242,11 +242,11 @@ struct ubi_volume_desc *ubi_open_volume_nm(int ubi_num, const char *name,
 	struct ubi_device *ubi;
 	struct ubi_volume_desc *ret;
 
-	dbg_gen("open device %d, volume %s, mode %d", ubi_num, name, mode);
-
 	if (!name)
 		return ERR_PTR(-EINVAL);
 
+	dbg_gen("open device %d, volume %s, mode %d", ubi_num, name, mode);
+
 	len = strnlen(name, UBI_VOL_NAME_MAX + 1);
 	if (len > UBI_VOL_NAME_MAX)
 		return ERR_PTR(-EINVAL);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-31 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-28 21:04 [PATCH] UBI: Fix potential NULL-pointer dereference Alexander Stein
2014-03-31  6:18 ` Mats Kärrman
2014-03-31  9:46   ` Artem Bityutskiy
2014-03-31 17:00     ` Alexander Stein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox