Skip to content
Snippets Groups Projects
Commit 26e973e3 authored by Mark D. Roth's avatar Mark D. Roth Committed by Nicolas "Pixel" Noble
Browse files

Fix cython bug.

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