Skip to content
Snippets Groups Projects
Commit a99ce990 authored by Morris Jette's avatar Morris Jette
Browse files

Fix uninitialized variable

Reported by Clang
parent 459af7f7
No related branches found
No related tags found
No related merge requests found
......@@ -300,6 +300,7 @@ bool pmixp_fd_write_ready(int fd, int *shutdown)
double start, cur;
pfd[0].fd = fd;
pfd[0].events = POLLOUT;
pfd[0].revents = 0;
gettimeofday(&tv,NULL);
start = tv.tv_sec + 1E-6*tv.tv_usec;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment