From: Sapan Bhatia Date: Fri, 16 Nov 2007 01:04:08 +0000 (+0000) Subject: Fixed bugs that Daniel pointed out. X-Git-Url: http://git.onelab.eu/?p=iptables.git;a=commitdiff_plain;h=3c764394aa27d91ff7c2fc2bfca3345051890db8 Fixed bugs that Daniel pointed out. --- diff --git a/src/fprobe-ulog.c b/src/fprobe-ulog.c index c5be35f..26eac1f 100644 --- a/src/fprobe-ulog.c +++ b/src/fprobe-ulog.c @@ -379,12 +379,17 @@ inline void copy_flow(struct Flow *src, struct Flow *dst) } void get_cur_epoch() { - int fd, len; + int fd; fd = open("/tmp/fprobe_last_epoch",O_RDONLY); if (fd != -1) { char snum[7]; - read(fd, snum, 7); - sscanf(snum,"%d",&cur_epoch); + ssize_t len; + len = read(fd, snum, sizeof(snum)-1); + if (len != -1) { + snum[len]='\0'; + sscanf(snum,"%d",&cur_epoch); + close(fd); + } } return; }