mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
Remove xmalloc/xrealloc limits for large binary resources.
This commit is contained in:
parent
d5354961d6
commit
d0f41e0894
@ -172,7 +172,6 @@ void *xmalloc(size_t size)
|
||||
void *res;
|
||||
|
||||
assert(size > 0);
|
||||
assert(size < 102400);
|
||||
res = malloc(size);
|
||||
if(res == NULL)
|
||||
{
|
||||
@ -193,7 +192,6 @@ void *xrealloc(void *p, size_t size)
|
||||
void *res;
|
||||
|
||||
assert(size > 0);
|
||||
assert(size < 102400);
|
||||
res = realloc(p, size);
|
||||
if(res == NULL)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user