From e9554ebd15b9160f4bc65d98af99dabee4dc2740 Mon Sep 17 00:00:00 2001 From: "av%netscape.com" Date: Fri, 28 Dec 2001 23:55:57 +0000 Subject: [PATCH] Tester plugin -- correcting the length of the data buffer, not part of the build git-svn-id: svn://10.0.0.236/trunk@111142 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/plugin/tools/tester/common/loghlp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/modules/plugin/tools/tester/common/loghlp.cpp b/mozilla/modules/plugin/tools/tester/common/loghlp.cpp index 5891091d4ad..db2ba7f3ada 100644 --- a/mozilla/modules/plugin/tools/tester/common/loghlp.cpp +++ b/mozilla/modules/plugin/tools/tester/common/loghlp.cpp @@ -931,6 +931,6 @@ int formatLogItem(LogItemStruct * plis, LPSTR szOutput, LPSTR szEndOfItem, BOOL strcat(szOutput, szString); strcat(szOutput, szTime); strcat(szOutput, szEOI); - iRet = strlen(szString) + strlen(szRet) + strlen(szTime) + strlen(szEOI) + 1; + iRet = strlen(szString) + strlen(szTime) + strlen(szEOI); return iRet; }