You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ch...@apache.org on 2013/11/21 23:41:07 UTC

svn commit: r1544351 - /uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c

Author: challngr
Date: Thu Nov 21 22:41:07 2013
New Revision: 1544351

URL: http://svn.apache.org/r1544351
Log:
UIMA-3117 Use constant 4096 for buffers to avoid portability issues.

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c?rev=1544351&r1=1544350&r2=1544351&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-spawn/src/ducc_ling.c Thu Nov 21 22:41:07 2013
@@ -233,7 +233,7 @@ char * mklogfile(const char *filepath)
     //
     // First step, the base must exist and be writable.
     //
-    char buf[BUFLEN];            // ( this is MAX_PATH, longest legal path in linux )
+    char buf[BUFLEN];
     char *next_tok = NULL;
     char *final_tok = NULL;