From 5caff8cc935d5f41b60351f73cec592cd63d6aee Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 19 Jun 2015 16:09:41 +0200 Subject: [PATCH] Add a FIXME comment. --- csync/src/std/c_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csync/src/std/c_string.c b/csync/src/std/c_string.c index 8f690cc2c..7702c224f 100644 --- a/csync/src/std/c_string.c +++ b/csync/src/std/c_string.c @@ -282,7 +282,7 @@ char* c_utf8_from_locale(const mbchar_t *wstr) len = strlen(str); // prepend \\?\ and convert '/' => '\' to support long names - if( len > 2 ) { + if( len > 2 ) { // FIXME set this to 250 or so int i = 4; // reserve mem for a new string with the prefix mem_reserved = len + 5;