This website works better with JavaScript.
首頁
探索
說明
登入
modal-studios
/
izanagi-2022
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Fix heap corruption in malloc
Use SDL's malloc functions in abstractions.
master
TheoryOfNekomata
1 年之前
父節點
7fa536895d
當前提交
8c9e34b691
共有
2 個文件被更改
,包括
4 次插入
和
4 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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);
Write
Preview
Loading…
取消
儲存