10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2025-02-22 17:38:57 +01:00

Fix deallocation pt2_serialized

This commit is contained in:
Yann Damour 2025-01-24 19:08:38 +01:00 committed by GitHub
parent 081df88585
commit 11b6525996
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -350,7 +350,6 @@ subroutine push_pt2_results_async_send(zmq_socket_push, index, pt2_data, b, task
enddo
rc = f77_zmq_send( zmq_socket_push, pt2_serialized, size(pt2_serialized)*8, ZMQ_SNDMORE)
deallocate(pt2_serialized)
if (rc == -1) then
print *, irp_here, ': error sending result'
stop 3
@ -358,6 +357,7 @@ subroutine push_pt2_results_async_send(zmq_socket_push, index, pt2_data, b, task
else if(rc /= size(pt2_serialized)*8) then
stop 'push'
endif
deallocate(pt2_serialized)
rc = f77_zmq_send( zmq_socket_push, task_id, n_tasks*4, ZMQ_SNDMORE)