X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Ftracefile.c;h=ee77b7af2188c82c0b08c288f76626cd6006c1dc;hb=803229fa9f8f2540b24d31fa1bbaf70d5a6f597e;hp=0af8976a170b4f6537f5139d63c4bb5e33950b67;hpb=9f797243e1537f470b67cd27ff2030bfd2d89bcb;p=lttv.git 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;