Searched defs:newpath (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.winnt.c1482 char *newpath = NULL; local
1558 newpath = (char *)MemAlloc(strlen("PATH=") + (bundledlibpath ? strlen(bundledlibpath) + 1 : 0) + (oldpath ? strlen(oldpath) + 1 : 0) + 10);
1559 strcpy(newpath, "PATH=");
1562 strcat(newpath, bundledlibpath);
1563 strcat(newpath, "\\bin");
1564 strcat(newpath, PATH_SEPARATOR);
1568 strcat(newpath, oldpath);
1569 strcat(newpath, PATH_SEPARATOR);
1571 if (newpath[strlen(newpath)
1644 char *newpath = NULL; local
[all...]
H A Djava_md.unix.c2036 char *newpath = NULL; local
2037 if ((newpath = (char *)malloc(strlen(path) + 1)) != NULL)
2039 strcpy(newpath, path);
2040 *strrchr(newpath, FILE_SEPARATOR_CHAR) = '\0';
2041 DeleteFilesAndDirectories(newpath, savelist);
2042 if (newpath)
2043 free(newpath);
2044 newpath = NULL;

Completed in 20 milliseconds