Commit 5361ef29 authored by kelsey's avatar kelsey
Browse files

Fix missing pointer update following realloc() in the external handler facility

parent 94b3d088
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -751,6 +751,7 @@ demo_activity_handler_stdout_cb(EV_P_ ev_io *w, int revents)
			ev_break(EV_A_ EVBREAK_ONE);
			return;
		}
		state->in_buf = p;
		state->in_size = new_size;
		space = state->in_size - state->in_offset;
	}