netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] 9p: fix min_t() casting
@ 2011-01-15 20:35 Dan Carpenter
  2011-01-16  4:52 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Carpenter @ 2011-01-15 20:35 UTC (permalink / raw)
  To: Eric Van Hensbergen
  Cc: David S. Miller, Sripathi Kodi, Venkateswararao Jujjuri,
	Aneesh Kumar K.V, netdev, kernel-janitors

The intent here was to cap the length to USHRT_MAX, but what the
code actually does is it just casts the return from strlen() to
unsigned short and truncates the significant bits away.

Signed-off-by: Dan Carpenter <error27@gmail.com>

diff --git a/net/9p/protocol.c b/net/9p/protocol.c
index 1e308f2..0422581 100644
--- a/net/9p/protocol.c
+++ b/net/9p/protocol.c
@@ -403,7 +403,7 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
 				const char *sptr = va_arg(ap, const char *);
 				uint16_t len = 0;
 				if (sptr)
-					len = min_t(uint16_t, strlen(sptr),
+					len = min_t(size_t, strlen(sptr),
 								USHRT_MAX);
 
 				errcode = p9pdu_writef(pdu, proto_version,

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

end of thread, other threads:[~2011-01-16 16:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-15 20:35 [patch] 9p: fix min_t() casting Dan Carpenter
2011-01-16  4:52 ` David Miller
2011-01-16 11:45   ` Dan Carpenter
2011-01-16 16:33     ` Eric Van Hensbergen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).