Fix a potential segfault.

Submitted by:	tg
This commit is contained in:
Maxim Sobolev 2001-10-25 08:17:10 +00:00
parent 5eba15b331
commit 1d49faf456
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49185
2 changed files with 23 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= windowmaker
PORTVERSION= 0.70.0
PORTREVISION= 1
CATEGORIES= x11-wm windowmaker
MASTER_SITES= ${MASTER_SITE_WINDOWMAKER}
MASTER_SITE_SUBDIR= source/release

View File

@ -0,0 +1,22 @@
$FreeBSD$
--- WINGs/findfile.c.orig Thu Oct 4 06:39:17 2001
+++ WINGs/findfile.c Thu Oct 25 11:14:56 2001
@@ -1,5 +1,5 @@
/*
- * Window Maker miscelaneous function library
+ * Window Maker miscellaneous function library
*
* Copyright (c) 1997 Alfredo K. Kojima
*
@@ -226,7 +226,8 @@
}
wfree(fullpath);
}
- tmp=&(tmp[len+1]);
+ tmp=&(tmp[len]);
+ if (*tmp==':') tmp++;
if (*tmp==0) break;
}
return NULL;