Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Inloggen
modal-studios
/
izanagi-2022
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
Fix heap corruption in malloc
Use SDL's malloc functions in abstractions.
master
TheoryOfNekomata
1 jaar geleden
bovenliggende
7fa536895d
commit
8c9e34b691
2 gewijzigde bestanden
met
toevoegingen van 4
en
4 verwijderingen
Zij-aan-zij weergave
Diff opties
Statistieken weergeven
Download Patch-bestand
Download Diff-bestand
+3
-3
src/packages/stdinc/IZ_stdlib.c
+1
-1
src/packages/stdinc/IZ_stdlib.h
+ 3
- 3
src/packages/stdinc/IZ_stdlib.c
Bestand weergeven
@@ -1,13 +1,13 @@
#include "IZ_stdlib.h"
void* IZ_malloc(size_t size) {
return malloc(size);
return
SDL_
malloc(size);
}
void* IZ_calloc(unsigned int count, size_t size) {
return calloc(count, size);
return
SDL_
calloc(count, size);
}
void IZ_free(void* p) {
free(p);
SDL_
free(p);
}
+ 1
- 1
src/packages/stdinc/IZ_stdlib.h
Bestand weergeven
@@ -1,7 +1,7 @@
#ifndef IZ_STDLIB_H
#define IZ_STDLIB_H
#include <
stdlib
.h>
#include <
SDL_stdinc
.h>
void* IZ_malloc(size_t);
void* IZ_calloc(unsigned int, size_t);
Schrijf
Voorbeeld
Laden…
Annuleren
Opslaan