public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4][Trivial] lib/kobject.c: Check parameter in kobject_get_path
@ 2012-04-21  9:25 yan
  2012-04-23 20:38 ` greg
  0 siblings, 1 reply; 2+ messages in thread
From: yan @ 2012-04-21  9:25 UTC (permalink / raw)
  To: greg; +Cc: kernel, message

kobject_get_path is exported, it passes its parameter kobj to
get_kobj_path_length and fill_kobj_path which are both static 
and called only once here. So check this parameter.


Signed-off-by: Yan Hong <clouds.yan@gmail.com>
---
 lib/kobject.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/lib/kobject.c b/lib/kobject.c
index 38fcc60..56c8cb3 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -104,6 +104,9 @@ char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask)
 	char *path;
 	int len;
 
+	if (!kobj)
+		return NULL;
+
 	len = get_kobj_path_length(kobj);
 	if (len == 0)
 		return NULL;
-- 
1.7.5.1




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

end of thread, other threads:[~2012-04-23 20:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-21  9:25 [PATCH 1/4][Trivial] lib/kobject.c: Check parameter in kobject_get_path yan
2012-04-23 20:38 ` greg

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