Kaynağa Gözat

fixed LoadCodepoints returning a freed ptr when count is 0 (#4089)

pull/4092/head
Alice Nyaa 7 ay önce
işlemeyi yapan: GitHub
ebeveyn
işleme
b0d49579c1
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: B5690EEEBB952194
1 değiştirilmiş dosya ile 1 ekleme ve 2 silme
  1. +1
    -2
      src/rtext.c

+ 1
- 2
src/rtext.c Dosyayı Görüntüle

@ -1892,8 +1892,7 @@ int *LoadCodepoints(const char *text, int *count)
}
// Re-allocate buffer to the actual number of codepoints loaded
int *temp = (int *)RL_REALLOC(codepoints, codepointCount*sizeof(int));
if (temp != NULL) codepoints = temp;
codepoints = (int *)RL_REALLOC(codepoints, codepointCount*sizeof(int));
*count = codepointCount;

Yükleniyor…
İptal
Kaydet