Skip to content

Commit

Permalink
Remove Additional NULLs
Browse files Browse the repository at this point in the history
  • Loading branch information
get committed Apr 11, 2023
1 parent 8b43629 commit 9760a96
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Source/Core/Common/MemoryUtil.cpp
Original file line number Diff line number Diff line change
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
8 changes: 4 additions & 4 deletions Source/Core/DolphinNoGUI/PlatformWin32.cpp
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/QtUtils/WinIconHelper.cpp
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion Source/Core/VideoBackends/D3D12/DX12Context.cpp
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion Source/Core/WinUpdater/Main.cpp
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 9760a96

Please sign in to comment.