Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r552 committed - A short term fix for the metadata buffer overflow problems.

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r552 committed - A short term fix for the metadata buffer overflow problems.


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r552 committed - A short term fix for the metadata buffer overflow problems.
  • Date: Mon, 29 Aug 2011 14:31:03 +0000

Revision: 552
Author:

Date: Mon Aug 29 07:29:16 2011
Log: A short term fix for the metadata buffer overflow problems.
http://code.google.com/p/ndt/source/detail?r=552

Modified:
/trunk/src/logging.h
/trunk/src/web100srv.c

=======================================
--- /trunk/src/logging.h Fri Aug 5 11:15:06 2011
+++ /trunk/src/logging.h Mon Aug 29 07:29:16 2011
@@ -43,11 +43,11 @@
};

struct metadata {
- char c2s_snaplog[64];
- char c2s_ndttrace[64];
- char s2c_snaplog[64];
- char s2c_ndttrace[64];
- char CPU_time[64];
+ char c2s_snaplog[128];
+ char c2s_ndttrace[128];
+ char s2c_snaplog[128];
+ char s2c_ndttrace[128];
+ char CPU_time[128];
char summary[256];
char date[32];
char time[16];
=======================================
--- /trunk/src/web100srv.c Sun May 8 04:04:21 2011
+++ /trunk/src/web100srv.c Mon Aug 29 07:29:16 2011
@@ -1329,7 +1329,7 @@
I2Addr listenaddr = NULL;
int listenfd;
char* srcname = NULL;
- char isoTime[64], dir[64];
+ char isoTime[64], dir[128];
int debug = 0;

DIR *dp;


  • [ndt-dev] [ndt] r552 committed - A short term fix for the metadata buffer overflow problems., ndt, 08/29/2011

Archive powered by MHonArc 2.6.16.

Top of Page