All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 3/8] Off-by-one error in uses_rfcomm
@ 2011-08-16  9:46 Pavel Raiskup
  2011-08-29 10:52 ` Johan Hedberg
  0 siblings, 1 reply; 2+ messages in thread
From: Pavel Raiskup @ 2011-08-16  9:46 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: ovasik

Variable len could be assigned to PATH_MAX + 1 length (returned
 from readlink) and this variable is used as index to array link
of size only PATH_MAX + 1.
---
  compat/dun.c |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/compat/dun.c b/compat/dun.c
index 59f036f..de98830 100644
--- a/compat/dun.c
+++ b/compat/dun.c
@@ -104,7 +104,7 @@ static int uses_rfcomm(char *path, char *dev)

  	while ((de = readdir(dir)) != NULL) {
  		char link[PATH_MAX + 1];
-		int  len = readlink(de->d_name, link, sizeof(link));
+		int  len = readlink(de->d_name, link, PATH_MAX);
  		if (len > 0) {
  			link[len] = 0;
  			if (strstr(link, dev)) {
-- 
1.7.4.4

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

* Re: [PATCH 3/8] Off-by-one error in uses_rfcomm
  2011-08-16  9:46 [PATCH 3/8] Off-by-one error in uses_rfcomm Pavel Raiskup
@ 2011-08-29 10:52 ` Johan Hedberg
  0 siblings, 0 replies; 2+ messages in thread
From: Johan Hedberg @ 2011-08-29 10:52 UTC (permalink / raw)
  To: Pavel Raiskup; +Cc: linux-bluetooth, ovasik

Hi Pavel,

On Tue, Aug 16, 2011, Pavel Raiskup wrote:
> Variable len could be assigned to PATH_MAX + 1 length (returned
> from readlink) and this variable is used as index to array link
> of size only PATH_MAX + 1.
> ---
>  compat/dun.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

The first three patches have been applied. The rest still have
formatting errors so I have not been able to apply them.

Johan

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

end of thread, other threads:[~2011-08-29 10:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-16  9:46 [PATCH 3/8] Off-by-one error in uses_rfcomm Pavel Raiskup
2011-08-29 10:52 ` Johan Hedberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.