* pipe.cc (fhandler_pipe::close): Avoid extraneous this->.
This commit is contained in:
parent
4a9cbef09d
commit
44a30b4510
@ -85,7 +85,7 @@ fhandler_pipe::read (void *in_ptr, size_t& in_len)
|
|||||||
|
|
||||||
int fhandler_pipe::close ()
|
int fhandler_pipe::close ()
|
||||||
{
|
{
|
||||||
int res = this->fhandler_base::close ();
|
int res = fhandler_base::close ();
|
||||||
if (guard)
|
if (guard)
|
||||||
CloseHandle (guard);
|
CloseHandle (guard);
|
||||||
if (writepipe_exists)
|
if (writepipe_exists)
|
||||||
|
Loading…
Reference in New Issue
Block a user