make sure that SDL_malloc(0) or SDL_calloc(0,x) doesn't return NULL.
This commit is contained in:
parent
3ca107edbd
commit
7e993a0df0
1 changed files with 6 additions and 0 deletions
|
@ -33,11 +33,17 @@
|
|||
|
||||
void *SDL_malloc(size_t size)
|
||||
{
|
||||
if (!size) {
|
||||
return malloc(1);
|
||||
}
|
||||
return malloc(size);
|
||||
}
|
||||
|
||||
void *SDL_calloc(size_t nmemb, size_t size)
|
||||
{
|
||||
if (!size || !nmemb) {
|
||||
return calloc(1,1);
|
||||
}
|
||||
return calloc(nmemb, size);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue