Browse Source

Add sanity check for invalidated sock in send_unix_msg

master
ckolivas 10 years ago
parent
commit
9daa9e62de
  1. 4
      src/libckpool.c

4
src/libckpool.c

@ -815,6 +815,10 @@ bool _send_unix_msg(int sockd, const char *buf, const char *file, const char *fu
bool retval = false; bool retval = false;
int ret, ern; int ret, ern;
if (unlikely(sockd < 0)) {
LOGWARNING("Attempting to send unix message to invalidated sockd %d", sockd);
goto out;
}
if (unlikely(!buf)) { if (unlikely(!buf)) {
LOGWARNING("Null message sent to send_unix_msg"); LOGWARNING("Null message sent to send_unix_msg");
goto out; goto out;

Loading…
Cancel
Save