浏览代码

WARNING: TEST: Security check to address potential overflow cocerns

pull/4127/head
Ray 6 个月前
父节点
当前提交
2bc75b877a
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      src/raylib.h

+ 3
- 2
src/raylib.h 查看文件

@ -123,11 +123,12 @@
// Allow custom memory allocators
// NOTE: Require recompiling raylib sources
#define MAX_ALLOC_SIZE 1024*1024 // 1GB of maximum allocation data
#ifndef RL_MALLOC
#define RL_MALLOC(sz) malloc(sz)
#define RL_MALLOC(sz) ((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)
#endif
#ifndef RL_CALLOC
#define RL_CALLOC(n,sz) calloc(n,sz)
#define RL_CALLOC(n,sz) ((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)
#endif
#ifndef RL_REALLOC
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)

正在加载...
取消
保存