From: Tyrel D. <ty...@us...> - 2011-11-17 02:15:23
|
Update of /cvsroot/sblim/gather/plugin In directory vz-cvs-3.sog:/tmp/cvs-serv17516/plugin Modified Files: metricIPProtocolEndpoint.c Log Message: Fixed under allocation of data buffer for BytesSubmitted Index: metricIPProtocolEndpoint.c =================================================================== RCS file: /cvsroot/sblim/gather/plugin/metricIPProtocolEndpoint.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- metricIPProtocolEndpoint.c 15 Nov 2011 04:57:17 -0000 1.8 +++ metricIPProtocolEndpoint.c 17 Nov 2011 02:15:21 -0000 1.9 @@ -111,7 +111,7 @@ char * end = NULL; char port[64]; char buf[60000]; - char values[(6*ULL_CHAR_MAX)+6]; + char values[(8*ULL_CHAR_MAX)+9]; size_t bytes_read = 0; int i = 0; unsigned long long receive_byte, receive_packets, receive_error, receive_drop = 0; |