X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=src%2Fmeta.c;h=91ebf01dfeadeaa6cd1b711f45f41e24c0f36190;hp=a32d413776d1f7781f5076dc24b7bf7808d62337;hb=c23fcf555ee4b69f03b76a0ffb731c3a475a77e7;hpb=e5b1b5cefb82531e8a700c2ee251da1bb0a06fbf diff --git a/src/meta.c b/src/meta.c index a32d413..91ebf01 100644 --- a/src/meta.c +++ b/src/meta.c @@ -1,6 +1,6 @@ /* meta.c -- handle the meta communication - Copyright (C) 2000-2006 Guus Sliepen , + Copyright (C) 2000-2009 Guus Sliepen , 2000-2005 Ivo Timmermans This program is free software; you can redistribute it and/or modify @@ -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);