Typo fix: == should be =.

Discovered accidentally while building on Windows, via a compiler warning.

PiperOrigin-RevId: 309314584
Change-Id: I14715313a59a00ccf577c370a8971a67db52078f
This commit is contained in:
Mihai Maruseac 2020-04-30 15:45:34 -07:00 committed by TensorFlower Gardener
parent 41f64f0788
commit 832787633e

View File

@ -378,7 +378,7 @@ int SubProcess::Communicate(const string* stdin_input, string* stdout_output,
}
} else {
CloseHandle(parent_pipe_[CHAN_STDIN]);
parent_pipe_[CHAN_STDIN] == NULL;
parent_pipe_[CHAN_STDIN] = NULL;
}
if (parent_pipe_[CHAN_STDOUT] != nullptr) {