All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Do not leak memory in is_mountpoint()
@ 2006-11-29 11:51 Olaf Kirch
  2006-11-29 12:13 ` Olaf Kirch
  0 siblings, 1 reply; 2+ messages in thread
From: Olaf Kirch @ 2006-11-29 11:51 UTC (permalink / raw)
  To: nfs; +Cc: nfbrown


Not sure if this was discussed before. Anyway, I
stumbled across this today.

Cheers,
Olaf
------------------------------------------------------------------
From: Olaf Kirch <okir@suse.de>
Subject: Do not leak memory in is_mountpoint()

Kind of obvious when you look at the code :-)

Signed-off-by: Olaf Kirch <okir@suse.de>

 support/misc/mountpoint.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

Index: nfs-utils-1.0.8/support/misc/mountpoint.c
===================================================================
--- nfs-utils-1.0.8.orig/support/misc/mountpoint.c
+++ nfs-utils-1.0.8/support/misc/mountpoint.c
@@ -20,17 +20,20 @@ is_mountpoint(char *path)
 	 */
 	char *dotdot;
 	struct stat stb, pstb;
+	int rv = 0;
 
 	dotdot = malloc(strlen(path)+4);
 	strcat(strcpy(dotdot, path), "/..");
 	if (lstat(path, &stb) != 0 ||
 	    lstat(dotdot, &pstb) != 0)
-		return 0;
+		goto done;
 
 	if (stb.st_dev != pstb.st_dev
 	    || stb.st_ino == pstb.st_ino)
-		return 1;
-	return 0;
+		rv = 1;
+
+done:	free(dotdot);
+	return rv;
 }
 
 int
-- 
Walks like a duck. Quacks like a duck. Must be a chicken.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
NFS maillist  -  NFS@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nfs

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

end of thread, other threads:[~2006-11-29 12:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-29 11:51 [PATCH] Do not leak memory in is_mountpoint() Olaf Kirch
2006-11-29 12:13 ` Olaf Kirch

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.