이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
탐색
도움말
로그인
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 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);
쓰기
미리보기
불러오는 중...
취소
저장