Merge pull request #3308 from oni-link/fix.clang.report

Fix warning: stream.c: stream_init(): Dead store: HI.
This commit is contained in:
Justin M. Keyes 2015-09-09 00:42:27 -04:00
commit a5b4e943be

View File

@ -56,7 +56,6 @@ void stream_init(Loop *loop, Stream *stream, int fd, uv_stream_t *uvstream,
if (stream->uvstream) {
stream->uvstream->data = stream;
loop = stream->uvstream->loop->data;
}
stream->data = data;