freebsd-ports/security/rain/files/patch-source__rain_tcp.c
Sam Lawrance 7ba81feca0 Fix condition where strlen() is called on non null-terminated string.
PR:		ports/72654
Submitted by:	David Gilbert <dgilbert@daveg.ca>
Approved by:	pat (maintainer, timeout)
Approved by:	clement (mentor)
2005-05-04 13:35:55 +00:00

11 lines
268 B
C

--- source/rain_tcp.c.orig Fri Aug 17 07:36:07 2001
+++ source/rain_tcp.c Wed Apr 20 01:19:04 2005
@@ -244,7 +244,7 @@
}
- pkt->tot_len = (sizeof(struct tcphdr) + strlen(buffer));
+ pkt->tot_len = (sizeof(struct tcphdr) + sizeof(char)*packetsize);
/*