Skip to content
Snippets Groups Projects
Commit 02adb891 authored by Mark D. Roth's avatar Mark D. Roth
Browse files

Fix cython bug.

parent 435f9f23
No related branches found
No related tags found
No related merge requests found
......@@ -652,8 +652,8 @@ def operation_receive_message(int flags):
# n.b. the c_op.data.receive_message field needs to be deleted by us,
# anyway, so we just let that be handled by the ByteBuffer() we allocated
# the line before.
op.c_op.data.recv_message.receive_message =
&op._received_message.c_byte_buffer
op.c_op.data.recv_message.receive_message = (
&op._received_message.c_byte_buffer)
op.is_valid = True
return op
......
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