mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
sigh
This commit is contained in:
parent
e062c847cb
commit
d0c6e0a481
1 changed files with 2 additions and 2 deletions
4
test.c
4
test.c
|
@ -433,8 +433,8 @@ bool task_propogate(const char *curdir) {
|
|||
dir = opendir(curdir);
|
||||
|
||||
while ((files = readdir(dir))) {
|
||||
memset (buffer, 0, sizeof(buffer));
|
||||
snprintf(buffer, 0, "%s/%s", curdir, files->d_name);
|
||||
memset (buffer, 0,sizeof(buffer));
|
||||
snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
|
||||
|
||||
if (stat(buffer, &directory) == -1) {
|
||||
con_err("internal error: stat failed, aborting\n");
|
||||
|
|
Loading…
Reference in a new issue