Skip to content

Commit

Permalink
Merge pull request #11760 from Minty-Meeo/embracing-nullptr
Browse files Browse the repository at this point in the history
Embrace nullptr over NULL and 0
  • Loading branch information
AdmiralCurtiss committed Apr 18, 2023
2 parents 8a355db + a5d06fd commit 2e7f0d0
Show file tree
Hide file tree
Showing 16 changed files with 36 additions and 33 deletions.
6 changes: 4 additions & 2 deletions Source/Core/Common/GL/GLInterface/GLX.cpp
Expand Up @@ -155,7 +155,8 @@ bool GLContextGLX::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB, None}};

s_glxError = false;
m_context = glXCreateContextAttribs(m_display, m_fbconfig, 0, True, &context_attribs[0]);
m_context =
glXCreateContextAttribs(m_display, m_fbconfig, nullptr, True, &context_attribs[0]);
XSync(m_display, False);
if (!m_context || s_glxError)
continue;
Expand All @@ -174,7 +175,8 @@ bool GLContextGLX::Initialize(const WindowSystemInfo& wsi, bool stereo, bool cor
std::array<int, 5> context_attribs_legacy = {
{GLX_CONTEXT_MAJOR_VERSION_ARB, 1, GLX_CONTEXT_MINOR_VERSION_ARB, 0, None}};
s_glxError = false;
m_context = glXCreateContextAttribs(m_display, m_fbconfig, 0, True, &context_attribs_legacy[0]);
m_context =
glXCreateContextAttribs(m_display, m_fbconfig, nullptr, True, &context_attribs_legacy[0]);
XSync(m_display, False);
m_attribs.clear();
m_attribs.insert(m_attribs.end(), context_attribs_legacy.begin(), context_attribs_legacy.end());
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Common/MemoryUtil.cpp
Expand Up @@ -250,7 +250,7 @@ size_t MemPhysical()
mib[1] = HW_PHYSMEM64;
#endif
size_t length = sizeof(size_t);
sysctl(mib, 2, &physical_memory, &length, NULL, 0);
sysctl(mib, 2, &physical_memory, &length, nullptr, 0);
return physical_memory;
#elif defined __HAIKU__
system_info sysinfo;
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/IOS/USB/USB_HID/HIDv4.cpp
Expand Up @@ -103,7 +103,7 @@ std::optional<IPCReply> USB_HIDv4::GetDeviceChange(const IOCtlRequest& request)
IPCReply USB_HIDv4::Shutdown(const IOCtlRequest& request)
{
std::lock_guard lk{m_devicechange_hook_address_mutex};
if (m_devicechange_hook_request != 0)
if (m_devicechange_hook_request != nullptr)
{
auto& system = Core::System::GetInstance();
auto& memory = system.GetMemory();
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/GDBStub.cpp
Expand Up @@ -1052,7 +1052,7 @@ void InitLocal(const char* socket)
addr.sun_family = AF_UNIX;
strcpy(addr.sun_path, socket);

InitGeneric(PF_LOCAL, (const sockaddr*)&addr, sizeof(addr), NULL, NULL);
InitGeneric(PF_LOCAL, (const sockaddr*)&addr, sizeof(addr), nullptr, nullptr);
}
#endif

Expand Down
8 changes: 4 additions & 4 deletions Source/Core/DolphinNoGUI/PlatformWin32.cpp
Expand Up @@ -62,12 +62,12 @@ bool PlatformWin32::RegisterRenderWindowClass()
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = GetModuleHandle(nullptr);
wc.hIcon = LoadIcon(NULL, IDI_ICON1);
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hIcon = LoadIcon(nullptr, IDI_ICON1);
wc.hCursor = LoadCursor(nullptr, IDC_ARROW);
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wc.lpszMenuName = NULL;
wc.lpszMenuName = nullptr;
wc.lpszClassName = WINDOW_CLASS_NAME;
wc.hIconSm = LoadIcon(NULL, IDI_ICON1);
wc.hIconSm = LoadIcon(nullptr, IDI_ICON1);

if (!RegisterClassEx(&wc))
{
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt/QtUtils/FlowLayout.cpp
Expand Up @@ -75,7 +75,7 @@ QLayoutItem* FlowLayout::takeAt(int index)
if (index >= 0 && index < m_item_list.size())
return m_item_list.takeAt(index);
else
return 0;
return nullptr;
}

Qt::Orientations FlowLayout::expandingDirections() const
Expand Down Expand Up @@ -167,7 +167,7 @@ int FlowLayout::smartSpacing(QStyle::PixelMetric pm) const
else if (parent->isWidgetType())
{
QWidget* pw = static_cast<QWidget*>(parent);
return pw->style()->pixelMetric(pm, 0, pw);
return pw->style()->pixelMetric(pm, nullptr, pw);
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/QtUtils/WinIconHelper.cpp
Expand Up @@ -42,7 +42,7 @@ static QPixmap PixmapFromHICON(HICON icon)
const int h = iconinfo.yHotspot * 2;
BITMAPINFO bitmapInfo = GetBMI(w, h, false);
DWORD* bits;
HBITMAP winBitmap = CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, (VOID**)&bits, NULL, 0);
HBITMAP winBitmap = CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, (VOID**)&bits, nullptr, 0);
HGDIOBJ oldhdc = reinterpret_cast<HBITMAP>(SelectObject(hdc, winBitmap));
DrawIconEx(hdc, 0, 0, icon, iconinfo.xHotspot * 2, iconinfo.yHotspot * 2, 0, 0, DI_NORMAL);

Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt/Settings/GameCubePane.cpp
Expand Up @@ -410,7 +410,7 @@ void GameCubePane::BrowseMemcard(ExpansionInterface::Slot slot)
const QString filename = DolphinFileDialog::getSaveFileName(
this, tr("Choose a file to open or create"),
QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
tr("GameCube Memory Cards (*.raw *.gcp)"), 0, QFileDialog::DontConfirmOverwrite);
tr("GameCube Memory Cards (*.raw *.gcp)"), nullptr, QFileDialog::DontConfirmOverwrite);

if (!filename.isEmpty())
SetMemcard(slot, filename);
Expand Down Expand Up @@ -618,7 +618,7 @@ void GameCubePane::BrowseAGPRom(ExpansionInterface::Slot slot)

QString filename = DolphinFileDialog::getSaveFileName(
this, tr("Choose a file to open"), QString::fromStdString(File::GetUserPath(D_GCUSER_IDX)),
tr("Game Boy Advance Carts (*.gba)"), 0, QFileDialog::DontConfirmOverwrite);
tr("Game Boy Advance Carts (*.gba)"), nullptr, QFileDialog::DontConfirmOverwrite);

if (!filename.isEmpty())
SetAGPRom(slot, filename);
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/DolphinQt/ToolBar.cpp
Expand Up @@ -154,14 +154,14 @@ void ToolBar::UpdatePausePlayButtonState(const bool playing_state)
{
if (playing_state)
{
disconnect(m_pause_play_action, 0, 0, 0);
disconnect(m_pause_play_action, nullptr, nullptr, nullptr);
m_pause_play_action->setText(tr("Pause"));
m_pause_play_action->setIcon(Resources::GetScaledThemeIcon("pause"));
connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PausePressed);
}
else
{
disconnect(m_pause_play_action, 0, 0, 0);
disconnect(m_pause_play_action, nullptr, nullptr, nullptr);
m_pause_play_action->setText(tr("Play"));
m_pause_play_action->setIcon(Resources::GetScaledThemeIcon("play"));
connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PlayPressed);
Expand Down
3 changes: 2 additions & 1 deletion Source/Core/UICommon/Disassembler.cpp
Expand Up @@ -47,7 +47,8 @@ HostDisassemblerLLVM::HostDisassemblerLLVM(const std::string& host_disasm, int i
LLVMInitializeAllTargetMCs();
LLVMInitializeAllDisassemblers();

m_llvm_context = LLVMCreateDisasmCPU(host_disasm.c_str(), cpu.c_str(), nullptr, 0, 0, nullptr);
m_llvm_context =
LLVMCreateDisasmCPU(host_disasm.c_str(), cpu.c_str(), nullptr, 0, nullptr, nullptr);

// Couldn't create llvm context
if (!m_llvm_context)
Expand Down
4 changes: 2 additions & 2 deletions Source/Core/UICommon/ResourcePack/ResourcePack.cpp
Expand Up @@ -36,7 +36,7 @@ ResourcePack::ResourcePack(const std::string& path) : m_path(path)
return;
}

if (unzLocateFile(file, "manifest.json", 0) == UNZ_END_OF_LIST_OF_FILE)
if (unzLocateFile(file, "manifest.json", nullptr) == UNZ_END_OF_LIST_OF_FILE)
{
m_valid = false;
m_error = "Resource pack is missing a manifest.";
Expand All @@ -63,7 +63,7 @@ ResourcePack::ResourcePack(const std::string& path) : m_path(path)
return;
}

if (unzLocateFile(file, "logo.png", 0) != UNZ_END_OF_LIST_OF_FILE)
if (unzLocateFile(file, "logo.png", nullptr) != UNZ_END_OF_LIST_OF_FILE)
{
unz_file_info64 logo_info{};
unzGetCurrentFileInfo64(file, &logo_info, nullptr, 0, nullptr, 0, nullptr, 0);
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/D3D12/DX12Context.cpp
Expand Up @@ -221,7 +221,7 @@ bool DXContext::CreateFence()
return false;

m_fence_event = CreateEvent(nullptr, FALSE, FALSE, nullptr);
ASSERT_MSG(VIDEO, m_fence_event != NULL, "Failed to create fence event");
ASSERT_MSG(VIDEO, m_fence_event != nullptr, "Failed to create fence event");
if (!m_fence_event)
return false;

Expand Down
10 changes: 5 additions & 5 deletions Source/Core/VideoBackends/OGL/OGLTexture.cpp
Expand Up @@ -296,7 +296,7 @@ OGLStagingTexture::OGLStagingTexture(StagingTextureType type, const TextureConfi

OGLStagingTexture::~OGLStagingTexture()
{
if (m_fence != 0)
if (m_fence != nullptr)
glDeleteSync(m_fence);
if (m_map_pointer)
{
Expand Down Expand Up @@ -418,7 +418,7 @@ void OGLStagingTexture::CopyFromTexture(const AbstractTexture* src,
// If we support buffer storage, create a fence for synchronization.
if (UsePersistentStagingBuffers())
{
if (m_fence != 0)
if (m_fence != nullptr)
glDeleteSync(m_fence);

glMemoryBarrier(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT);
Expand Down Expand Up @@ -479,7 +479,7 @@ void OGLStagingTexture::CopyToTexture(const MathUtil::Rectangle<int>& src_rect,
// If we support buffer storage, create a fence for synchronization.
if (UsePersistentStagingBuffers())
{
if (m_fence != 0)
if (m_fence != nullptr)
glDeleteSync(m_fence);

m_fence = glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0);
Expand All @@ -493,15 +493,15 @@ void OGLStagingTexture::Flush()
{
// No-op when not using buffer storage, as the transfers happen on Map().
// m_fence will always be zero in this case.
if (m_fence == 0)
if (m_fence == nullptr)
{
m_needs_flush = false;
return;
}

glClientWaitSync(m_fence, 0, GL_TIMEOUT_IGNORED);
glDeleteSync(m_fence);
m_fence = 0;
m_fence = nullptr;
m_needs_flush = false;
}

Expand Down
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/OGL/OGLTexture.h
Expand Up @@ -75,7 +75,7 @@ class OGLStagingTexture final : public AbstractStagingTexture
GLenum m_target;
GLuint m_buffer_name;
size_t m_buffer_size;
GLsync m_fence = 0;
GLsync m_fence = nullptr;
};

class OGLFramebuffer final : public AbstractFramebuffer
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/WinUpdater/Main.cpp
Expand Up @@ -58,7 +58,7 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine
}

// Relaunch the updater as administrator
ShellExecuteW(nullptr, L"runas", path->c_str(), pCmdLine, NULL, SW_SHOW);
ShellExecuteW(nullptr, L"runas", path->c_str(), pCmdLine, nullptr, SW_SHOW);
return 0;
}

Expand Down
12 changes: 6 additions & 6 deletions Source/Core/WinUpdater/WinUI.cpp
Expand Up @@ -77,7 +77,7 @@ bool InitWindow()
if (!window_handle)
return false;

if (SUCCEEDED(CoCreateInstance(CLSID_TaskbarList, NULL, CLSCTX_INPROC_SERVER,
if (SUCCEEDED(CoCreateInstance(CLSID_TaskbarList, nullptr, CLSCTX_INPROC_SERVER,
IID_PPV_ARGS(taskbar_list.GetAddressOf()))))
{
if (FAILED(taskbar_list->HrInit()))
Expand All @@ -88,8 +88,8 @@ bool InitWindow()

int y = PADDING_HEIGHT;

label_handle = CreateWindow(L"STATIC", NULL, WS_VISIBLE | WS_CHILD, 5, y, 500, 25, window_handle,
nullptr, nullptr, 0);
label_handle = CreateWindow(L"STATIC", nullptr, WS_VISIBLE | WS_CHILD, 5, y, 500, 25,
window_handle, nullptr, nullptr, 0);

if (!label_handle)
return false;
Expand All @@ -106,16 +106,16 @@ bool InitWindow()

y += GetWindowHeight(label_handle) + PADDING_HEIGHT;

total_progressbar_handle = CreateWindow(PROGRESS_CLASS, NULL, PROGRESSBAR_FLAGS, 5, y, 470, 25,
total_progressbar_handle = CreateWindow(PROGRESS_CLASS, nullptr, PROGRESSBAR_FLAGS, 5, y, 470, 25,
window_handle, nullptr, nullptr, 0);

y += GetWindowHeight(total_progressbar_handle) + PADDING_HEIGHT;

if (!total_progressbar_handle)
return false;

current_progressbar_handle = CreateWindow(PROGRESS_CLASS, NULL, PROGRESSBAR_FLAGS, 5, y, 470, 25,
window_handle, nullptr, nullptr, 0);
current_progressbar_handle = CreateWindow(PROGRESS_CLASS, nullptr, PROGRESSBAR_FLAGS, 5, y, 470,
25, window_handle, nullptr, nullptr, 0);

y += GetWindowHeight(current_progressbar_handle) + PADDING_HEIGHT;

Expand Down

0 comments on commit 2e7f0d0

Please sign in to comment.