Replaced NULL with nullptr (#8298)

This commit is contained in:
Lemongrass3110
2024-05-03 19:38:13 +02:00
committed by GitHub
parent 30928a04e1
commit b48948822a
100 changed files with 3217 additions and 3217 deletions

View File

@@ -77,7 +77,7 @@ int read_map(char *name, struct map_data *m)
// Open map GAT
sprintf(filename,"data\\%s.gat", name);
gat = (unsigned char *)grfio_read(filename);
if (gat == NULL)
if (gat == nullptr)
return 0;
// Open map RSW
@@ -217,7 +217,7 @@ bool MapcacheTool::initialize( int argc, char* argv[] ){
ShowStatus("Opening map cache: %s\n", map_cache_file.c_str());
if(!rebuild) {
map_cache_fp = fopen(map_cache_file.c_str(), "rb");
if(map_cache_fp == NULL) {
if(map_cache_fp == nullptr) {
ShowNotice("Existing map cache not found, forcing rebuild mode\n");
rebuild = 1;
} else
@@ -227,7 +227,7 @@ bool MapcacheTool::initialize( int argc, char* argv[] ){
map_cache_fp = fopen(map_cache_file.c_str(), "w+b");
else
map_cache_fp = fopen(map_cache_file.c_str(), "r+b");
if(map_cache_fp == NULL) {
if(map_cache_fp == nullptr) {
ShowError("Failure when opening map cache file %s\n", map_cache_file.c_str());
return false;
}
@@ -241,7 +241,7 @@ bool MapcacheTool::initialize( int argc, char* argv[] ){
ShowStatus("Opening map list: %s\n", filename.c_str());
list = fopen(filename.c_str(), "r");
if (list == NULL) {
if (list == nullptr) {
ShowError("Failure when opening maps list file %s\n", filename.c_str());
return false;
}