mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-2194 dynamically allocate room for path and file name
X-SVN-Rev: 11803
This commit is contained in:
parent
67ccf6d980
commit
583746e2d9
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue