]> git.mxchange.org Git - flightgear.git/commitdiff
Provide an explanation to why a special case is needed
authorfredb <fredb>
Sun, 19 Oct 2008 16:26:52 +0000 (16:26 +0000)
committerfredb <fredb>
Sun, 19 Oct 2008 16:26:52 +0000 (16:26 +0000)
utils/TerraSync/terrasync.cxx

index 70ebf87aa6c5ce9862704a714630060821953b6a..314f559720a9e3b3e10352977e998575894af1e0 100644 (file)
@@ -110,6 +110,9 @@ int mysvn_setup(void) {
     if (mysvn_pool) return EXIT_SUCCESS;
     // No, so initialize svn internals generally
 #ifdef _MSC_VER
+    // there is a segfault when providing an error stream.
+    //  Apparently, calling setvbuf with a nul buffer is
+    //  not supported under msvc 7.1 ( code inside svn_cmdline_init )
     if (svn_cmdline_init("terrasync", 0) != EXIT_SUCCESS)
         return EXIT_FAILURE;
 #else