Ver código fonte

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

pull/3798/head
Mingjie Shen 10 meses atrás
committed by GitHub
pai
commit
6280771dad
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: B5690EEEBB952194
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/rtext.c

+ 1
- 1
src/rtext.c Ver arquivo

@ -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;

Carregando…
Cancelar
Salvar