소스 검색

add NULL check (#1925)

pull/1941/head
atticus 4 년 전
committed by GitHub
부모
커밋
6d20430ccc
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      src/extras/rmem.h

+ 1
- 0
src/extras/rmem.h 파일 보기

@ -276,6 +276,7 @@ static void __InsertMemNode(MemPool *const mempool, AllocList *const list, MemNo
mempool->arena.offs += iter->size;
__RemoveMemNode(list, iter);
iter = list->head;
if (iter == NULL) return;
}
const uintptr_t inode = ( uintptr_t )node;
const uintptr_t iiter = ( uintptr_t )iter;

불러오는 중...
취소
저장