ソースを参照

add NULL check (#1925)

pull/1941/head
atticus 4年前
committed by GitHub
コミット
6d20430ccc
この署名に対応する既知のキーがデータベースに存在しません 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;

読み込み中…
キャンセル
保存