X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=src%2Fmeta.c;h=b59f15b09443f47596d8e60454686e262c5298b7;hp=76938276750573060cce2e70100b2f8b6b01c623;hb=36f8e4da8b1708474505f5a1fa8cf1ba848921de;hpb=de78d79db84c486afcc353884ec1770866beb653 diff --git a/src/meta.c b/src/meta.c index 7693827..b59f15b 100644 --- a/src/meta.c +++ b/src/meta.c @@ -41,6 +41,11 @@ bool send_meta(connection_t *c, const char *buffer, int length) cp(); + if(!c) { + logger(LOG_ERR, _("send_meta() called with NULL pointer!")); + abort(); + } + ifdebug(META) logger(LOG_DEBUG, _("Sending %d bytes of metadata to %s (%s)"), length, c->name, c->hostname); @@ -94,10 +99,12 @@ bool flush_meta(connection_t *c) c->name, c->hostname); } else if(errno == EINTR) { continue; +#ifdef EWOULDBLOCK } else if(errno == EWOULDBLOCK) { ifdebug(CONNECTIONS) logger(LOG_DEBUG, _("Flushing %d bytes to %s (%s) would block"), c->outbuflen, c->name, c->hostname); return true; +#endif } else { logger(LOG_ERR, _("Flushing meta data to %s (%s) failed: %s"), c->name, c->hostname, strerror(errno));