From 90230ac96279b468dc7163025c11970632d8b33e Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 7 Nov 2005 19:18:00 +0000 Subject: r11560: Fix core dump if setmntent returns NULL. Pointed out by Jay Fanlason @ Red Hat. Jeremy. (This used to be commit e8136ae746b5be51b252d900aa732c8106fefcaf) --- source3/lib/sysquotas.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3') diff --git a/source3/lib/sysquotas.c b/source3/lib/sysquotas.c index 52a598a4e6..c1ab6ef8cf 100644 --- a/source3/lib/sysquotas.c +++ b/source3/lib/sysquotas.c @@ -67,6 +67,9 @@ static int sys_path_to_bdev(const char *path, char **mntpath, char **bdev, char devno = S.st_dev ; fp = setmntent(MOUNTED,"r"); + if (fp == NULL) { + return -1; + } while ((mnt = getmntent(fp))) { if ( sys_stat(mnt->mnt_dir,&S) == -1 ) -- cgit