mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8305922: [aix,linux] Avoid comparing 'this' to nullptr
Reviewed-by: mdoerr, dholmes
This commit is contained in:
@@ -34,7 +34,6 @@
|
||||
#include "runtime/vmThread.hpp"
|
||||
|
||||
void OSThread::pd_initialize() {
|
||||
assert(this != nullptr, "check");
|
||||
_thread_id = 0;
|
||||
_kernel_thread_id = 0;
|
||||
_siginfo = nullptr;
|
||||
|
||||
@@ -30,7 +30,6 @@
|
||||
#include <signal.h>
|
||||
|
||||
void OSThread::pd_initialize() {
|
||||
assert(this != nullptr, "check");
|
||||
_thread_id = 0;
|
||||
_pthread_id = 0;
|
||||
_siginfo = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user