Explorar el Código

[rtext] Change strcpy to strncpy to fix buffer overflow (#3795)

pull/3798/head
Mingjie Shen hace 10 meses
cometido por GitHub
padre
commit
6280771dad
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/rtext.c

+ 1
- 1
src/rtext.c Ver fichero

@ -530,7 +530,7 @@ Font LoadFontFromMemory(const char *fileType, const unsigned char *fileData, int
Font font = { 0 };
char fileExtLower[16] = { 0 };
strcpy(fileExtLower, TextToLower(fileType));
strncpy(fileExtLower, TextToLower(fileType), sizeof(fileExtLower) - 1);
font.baseSize = fontSize;
font.glyphCount = (codepointCount > 0)? codepointCount : 95;

Cargando…
Cancelar
Guardar