Selaa lähdekoodia

Revert "glapi: s/strcpy/strncpy/"

This reverts commit 9446fd8f69.

It doesn't make sense to replace strcpy(a,b) with strncpy(a,b,strlen(b)).
The preceeding code effectively does bounds checking, btw.
undefined
Brian Paul 15 vuotta sitten
vanhempi
commit
6405ecb399
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1
    2
      src/mesa/glapi/glapi_getproc.c

+ 1
- 2
src/mesa/glapi/glapi_getproc.c Näytä tiedosto

@@ -265,8 +265,7 @@ str_dup(const char *str)
copy = (char*) malloc(strlen(str) + 1);
if (!copy)
return NULL;
strncpy(copy, str, strlen(str));
copy[strlen(str)] = '\0';
strcpy(copy, str);
return copy;
}


Loading…
Peruuta
Tallenna