mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-03 06:45:51 +01:00
Small fix for an endless loop in findfile.c:wfindfileinarray()
This commit is contained in:
@@ -312,7 +312,7 @@ wfindfileinarray(proplist_t array, char *file)
|
||||
}
|
||||
|
||||
flen = strlen(file);
|
||||
for (i=0; PLGetNumberOfElements(array); i++) {
|
||||
for (i=0; i<PLGetNumberOfElements(array); i++) {
|
||||
proplist_t prop;
|
||||
char *p;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user