Explorar el Código

lsx: check snprintf

master
Connor Lane Smith hace 13 años
padre
commit
88d44169e9
Se han modificado 1 ficheros con 3 adiciones y 4 borrados
  1. +3
    -4
      lsx.c

+ 3
- 4
lsx.c Ver fichero

@@ -30,10 +30,9 @@ lsx(const char *dir) {
perror(dir);
return;
}
while((d = readdir(dp))) {
snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name);
if(!stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0)
while((d = readdir(dp)))
if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < sizeof buf
&& !stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0)
puts(d->d_name);
}
closedir(dp);
}

Cargando…
Cancelar
Guardar