@@ -40,7 +40,7 @@ Error FileAccessWindowsPipe::open_existing(HANDLE p_rfd, HANDLE p_wfd, bool p_bl
4040 _close ();
4141
4242 path_src = String ();
43- ERR_FAIL_COND_V_MSG (fd[0 ] != 0 || fd[1 ] != 0 , ERR_ALREADY_IN_USE, " Pipe is already in use." );
43+ ERR_FAIL_COND_V_MSG (fd[0 ] != nullptr || fd[1 ] != nullptr , ERR_ALREADY_IN_USE, " Pipe is already in use." );
4444 fd[0 ] = p_rfd;
4545 fd[1 ] = p_wfd;
4646
@@ -58,18 +58,18 @@ Error FileAccessWindowsPipe::open_internal(const String &p_path, int p_mode_flag
5858 _close ();
5959
6060 path_src = p_path;
61- ERR_FAIL_COND_V_MSG (fd[0 ] != 0 || fd[1 ] != 0 , ERR_ALREADY_IN_USE, " Pipe is already in use." );
61+ ERR_FAIL_COND_V_MSG (fd[0 ] != nullptr || fd[1 ] != nullptr , ERR_ALREADY_IN_USE, " Pipe is already in use." );
6262
6363 path = String (" \\\\ .\\ pipe\\ LOCAL\\ " ) + p_path.replace (" pipe://" , " " ).replace (" /" , " _" );
6464
65- HANDLE h = CreateFileW ((LPCWSTR)path.utf16 ().get_data (), GENERIC_READ | GENERIC_WRITE, 0 , nullptr , OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL );
65+ HANDLE h = CreateFileW ((LPCWSTR)path.utf16 ().get_data (), GENERIC_READ | GENERIC_WRITE, 0 , nullptr , OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr );
6666 if (h == INVALID_HANDLE_VALUE) {
6767 h = CreateNamedPipeW ((LPCWSTR)path.utf16 ().get_data (), PIPE_ACCESS_DUPLEX, PIPE_TYPE_BYTE | PIPE_READMODE_BYTE | PIPE_NOWAIT, 1 , 4096 , 4096 , 0 , nullptr );
6868 if (h == INVALID_HANDLE_VALUE) {
6969 last_error = ERR_FILE_CANT_OPEN;
7070 return last_error;
7171 }
72- ConnectNamedPipe (h, NULL );
72+ ConnectNamedPipe (h, nullptr );
7373 }
7474 fd[0 ] = h;
7575 fd[1 ] = h;
@@ -79,19 +79,19 @@ Error FileAccessWindowsPipe::open_internal(const String &p_path, int p_mode_flag
7979}
8080
8181void FileAccessWindowsPipe::_close () {
82- if (fd[0 ] == 0 ) {
82+ if (fd[0 ] == nullptr ) {
8383 return ;
8484 }
8585 if (fd[1 ] != fd[0 ]) {
8686 CloseHandle (fd[1 ]);
8787 }
8888 CloseHandle (fd[0 ]);
89- fd[0 ] = 0 ;
90- fd[1 ] = 0 ;
89+ fd[0 ] = nullptr ;
90+ fd[1 ] = nullptr ;
9191}
9292
9393bool FileAccessWindowsPipe::is_open () const {
94- return (fd[0 ] != 0 || fd[1 ] != 0 );
94+ return (fd[0 ] != nullptr || fd[1 ] != nullptr );
9595}
9696
9797String FileAccessWindowsPipe::get_path () const {
@@ -103,7 +103,7 @@ String FileAccessWindowsPipe::get_path_absolute() const {
103103}
104104
105105uint64_t FileAccessWindowsPipe::get_buffer (uint8_t *p_dst, uint64_t p_length) const {
106- ERR_FAIL_COND_V_MSG (fd[0 ] == 0 , -1 , " Pipe must be opened before use." );
106+ ERR_FAIL_COND_V_MSG (fd[0 ] == nullptr , -1 , " Pipe must be opened before use." );
107107 ERR_FAIL_COND_V (!p_dst && p_length > 0 , -1 );
108108
109109 DWORD read = 0 ;
@@ -120,7 +120,7 @@ Error FileAccessWindowsPipe::get_error() const {
120120}
121121
122122void FileAccessWindowsPipe::store_buffer (const uint8_t *p_src, uint64_t p_length) {
123- ERR_FAIL_COND_MSG (fd[1 ] == 0 , " Pipe must be opened before use." );
123+ ERR_FAIL_COND_MSG (fd[1 ] == nullptr , " Pipe must be opened before use." );
124124 ERR_FAIL_COND (!p_src && p_length > 0 );
125125
126126 DWORD read = -1 ;
0 commit comments