1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

channels: Don't leak memory in channel_rcv_request callback.

Found by Coverity.
This commit is contained in:
Andreas Schneider
2012-10-08 21:15:23 +02:00
parent 66045054f4
commit dde3deb9ea

View File

@@ -730,6 +730,7 @@ SSH_PACKET_CALLBACK(channel_rcv_request) {
sig,
channel->callbacks->userdata);
}
SAFE_FREE(sig);
leave_function();
return SSH_PACKET_USED;