ICU-2194 dynamically allocate room for path and file name

X-SVN-Rev: 11803
This commit is contained in:
Ram Viswanadha 2003-05-05 23:21:16 +00:00
parent 67ccf6d980
commit 583746e2d9
2 changed files with 6 additions and 3 deletions

View file

@ -104,7 +104,7 @@ static UOption options[]={
extern int
testData(TestIDNA& test) {
char filename[300];
char* filename = (char*) malloc(strlen(IntlTest::pathToDataDirectory())*3);
//TODO get the srcDir dynamically
const char *srcDir=IntlTest::pathToDataDirectory(), *destDir=NULL, *suffix=NULL;
char *basename=NULL;
@ -178,6 +178,7 @@ testData(TestIDNA& test) {
cleanup();
pTestIDNA = NULL;
free(filename);
return errorCode;
}
U_CDECL_BEGIN

View file

@ -88,7 +88,7 @@ static UOption options[]={
extern int
main(int argc, char* argv[]) {
char filename[300];
char* filename = NULL;
const char *srcDir=NULL, *destDir=NULL, *suffix=NULL;
char *basename=NULL;
char *saveBasename = NULL;
@ -147,7 +147,7 @@ main(int argc, char* argv[]) {
}
setUnicodeVersion(options[6].value);
filename = (char* ) uprv_malloc(uprv_strlen(srcDir) + 300); /* hopefully this should be enough */
/* prepare the filename beginning with the source dir */
if(uprv_strchr(srcDir,U_FILE_SEP_CHAR) == NULL){
filename[0] = 0x2E;
@ -240,6 +240,8 @@ main(int argc, char* argv[]) {
if(printRules){
printf("\t\t\"::[:AGE=3.2:]NFKC;\"\n\t}\n}");
}
uprv_free(filename);
return errorCode;
}