Replace all occurrences of NULL with NULLPTR for unified C and C++ null pointer handling

这个提交包含在:
2025-09-16 15:59:56 +02:00
父节点 ba9e5b1b88
当前提交 fabf3a3a5e
修改 46 个文件,包含 294 行新增288 行删除

查看文件

@@ -400,7 +400,7 @@ PeLoadImage(IN PEFI_FILE_HANDLE FileHandle,
}
/* Store file size and memory type, nullify data and free up memory */
ImageData->Data = NULL;
ImageData->Data = NULLPTR;
ImageData->FileSize = FileInfo->FileSize;
ImageData->MemoryType = MemoryType;
XtLdrProtocol->Memory.FreePool(FileInfo);