X-Git-Url: http://git.pk910.de/?p=NextIRCd.git;a=blobdiff_plain;f=src%2FIOHandler%2FIOTimer.c;h=77648316a51718aa09eaabf4e9f3605a6550db92;hp=8c4adc7a0b5cdebcf2bfb0eb726e673df521fcfc;hb=f40d2e60142d1cb141c46e63ed847b0d821ca920;hpb=41292e20c03e930e8fb3a03f1607fd71b4c1c6bb diff --git a/src/IOHandler/IOTimer.c b/src/IOHandler/IOTimer.c index 8c4adc7..7764831 100644 --- a/src/IOHandler/IOTimer.c +++ b/src/IOHandler/IOTimer.c @@ -32,10 +32,10 @@ struct _IOTimerDescriptor *iotimer_sorted_descriptors; struct IOTimerDescriptor *iotimer_create(struct timeval *timeout) { struct IOTimerDescriptor *descriptor = calloc(1, sizeof(*descriptor)); - if(!descriptor) { - iolog_trigger(IOLOG_ERROR, "could not allocate memory for IOTimerDescriptor in %s:%d", __FILE__, __LINE__); - return NULL; - } + if(!descriptor) { + iolog_trigger(IOLOG_ERROR, "could not allocate memory for IOTimerDescriptor in %s:%d", __FILE__, __LINE__); + return NULL; + } struct _IOTimerDescriptor *timer = _create_timer(timeout); if(!timer) { free(descriptor); @@ -117,10 +117,10 @@ void _init_timers() { struct _IOTimerDescriptor *_create_timer(struct timeval *timeout) { struct _IOTimerDescriptor *timer = calloc(1, sizeof(*timer)); - if(!timer) { - iolog_trigger(IOLOG_ERROR, "could not allocate memory for _IOTimerDescriptor in %s:%d", __FILE__, __LINE__); - return NULL; - } + if(!timer) { + iolog_trigger(IOLOG_ERROR, "could not allocate memory for _IOTimerDescriptor in %s:%d", __FILE__, __LINE__); + return NULL; + } if(timeout) { timer->timeout = *timeout; _rearrange_timer(timer);