Linux IIO development
 help / color / mirror / Atom feed
* [PATCH v2] iio-utils: fix memory overflow fordynamically allocateded memory to hold filename
@ 2010-05-24 10:10 Barry Song
  2010-05-24 11:45 ` Jonathan Cameron
  0 siblings, 1 reply; 2+ messages in thread
From: Barry Song @ 2010-05-24 10:10 UTC (permalink / raw)
  To: gregkh, jic23; +Cc: linux-iio, uclinux-dist-devel, Barry Song

Signed-off-by: Barry Song <21cnbao@gmail.com>
---
 drivers/staging/iio/Documentation/iio_utils.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/iio/Documentation/iio_utils.h b/drivers/staging/iio/Documentation/iio_utils.h
index a4555e6..6411bf9 100644
--- a/drivers/staging/iio/Documentation/iio_utils.h
+++ b/drivers/staging/iio/Documentation/iio_utils.h
@@ -64,7 +64,8 @@ inline int find_type_by_name(const char *name, const char *type)
 						+ strlen(type)
 						+ 1
 						+ numstrlen
-						+ 1);
+						+ 1
+						+ IIO_MAX_NAME_LENGTH);
 				if (filename == NULL)
 					return -ENOMEM;
 				sprintf(filename, "%s%s%d/name",
-- 
1.5.6.3

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

end of thread, other threads:[~2010-05-24 11:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-24 10:10 [PATCH v2] iio-utils: fix memory overflow fordynamically allocateded memory to hold filename Barry Song
2010-05-24 11:45 ` Jonathan Cameron

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