From 803229fa9f8f2540b24d31fa1bbaf70d5a6f597e Mon Sep 17 00:00:00 2001 From: compudj Date: Mon, 29 Dec 2003 23:39:48 +0000 Subject: [PATCH] absolute pathname fix git-svn-id: http://ltt.polymtl.ca/svn@348 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/ltt/tracefile.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ltt/branches/poly/ltt/tracefile.c b/ltt/branches/poly/ltt/tracefile.c index 0af8976a..ee77b7af 100644 --- a/ltt/branches/poly/ltt/tracefile.c +++ b/ltt/branches/poly/ltt/tracefile.c @@ -365,6 +365,10 @@ void getCpuFileInfo(LttTrace *t, char* cpu) * *When a trace is closed, all the associated facilities, types and fields *are released as well. + * + * MD : If pathname is already absolute, we do not add current working + * directory to it. + * ****************************************************************************/ void get_absolute_pathname(const char *pathname, char * abs_pathname) @@ -372,11 +376,19 @@ void get_absolute_pathname(const char *pathname, char * abs_pathname) char * ptr, *ptr1; size_t size = DIR_NAME_SIZE; abs_pathname[0] = '\0'; + + if(pathname[0] == '/') + { + strcat(abs_pathname, pathname); + return; + } + if(!getcwd(abs_pathname, size)){ g_warning("Can not get current working directory\n"); strcat(abs_pathname, pathname); return; } + strcat(abs_pathname,"/"); ptr = (char*)pathname; -- 2.34.1