In the exportXML method that returns a string, needed to call closeStream so that a null character will be appended to the string. Otherwise, there will be garbage at the end of the string.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1038 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2007-02-21 19:24:11 +00:00
parent 7aff3b04e6
commit e2894b2ffd

View File

@@ -2999,6 +2999,7 @@ JNIEXPORT jstring JNICALL Java_xflaim_Db__1exportXML__JJI(
ThrowError( rc, pEnv);
goto Exit;
}
dynaOStream.closeStream();
// Create a string and return it.