使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
modal-studios
/
izanagi-2022
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
Fix heap corruption in malloc
Use SDL's malloc functions in abstractions.
master
TheoryOfNekomata
1年前
父节点
7fa536895d
当前提交
8c9e34b691
共有
2 个文件被更改
,包括
4 次插入
和
4 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+3
-3
src/packages/stdinc/IZ_stdlib.c
+1
-1
src/packages/stdinc/IZ_stdlib.h
+ 3
- 3
src/packages/stdinc/IZ_stdlib.c
查看文件
@@ -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
查看文件
@@ -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);
撰写
预览
正在加载...
取消
保存