Skip to content

Commit

Permalink
avoid core dumps of clients and daemons due to double free
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabler-hpc committed Sep 18, 2024
1 parent 094f6ec commit 62c72be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/libs/gdi/sge_gdi_packet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ sge_gdi_packet_free(sge_gdi_packet_class_t **packet) {
ret = false;
}
sge_free(&(*packet)->auth_info);
sge_free(&(*packet)->grp_array);
//sge_free(&(*packet)->grp_array);
sge_free(packet);
}
DRETURN(ret);
Expand Down

0 comments on commit 62c72be

Please sign in to comment.