freebsd-ports/x11-wm/windowmaker/files/patch-WINGs::findfile.c
Maxim Sobolev 1d49faf456 Fix a potential segfault.
Submitted by:	tg
2001-10-25 08:17:10 +00:00

22 lines
444 B
C

$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;