]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
perf symbols: Get rid of duplicated snprintf()
authorNamhyung Kim <namhyung@gmail.com>
Mon, 12 Dec 2011 15:16:51 +0000 (00:16 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 20 Dec 2011 15:34:52 +0000 (13:34 -0200)
The 'path' variable is set on a upper line, don't need to do it again.

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1323703017-6060-3-git-send-email-namhyung@gmail.com
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/symbol.c

index 632b50c7bc267839fe7593d6ca3343f5beec5652..e54b13d4c3570aed798352942fafaa6bce2fc3ac 100644 (file)
@@ -1757,7 +1757,7 @@ static int map_groups__set_modules_path_dir(struct map_groups *mg,
                struct stat st;
 
                /*sshfs might return bad dent->d_type, so we have to stat*/
-               sprintf(path, "%s/%s", dir_name, dent->d_name);
+               snprintf(path, sizeof(path), "%s/%s", dir_name, dent->d_name);
                if (stat(path, &st))
                        continue;
 
@@ -1766,8 +1766,6 @@ static int map_groups__set_modules_path_dir(struct map_groups *mg,
                            !strcmp(dent->d_name, ".."))
                                continue;
 
-                       snprintf(path, sizeof(path), "%s/%s",
-                                dir_name, dent->d_name);
                        ret = map_groups__set_modules_path_dir(mg, path);
                        if (ret < 0)
                                goto out;
@@ -1788,9 +1786,6 @@ static int map_groups__set_modules_path_dir(struct map_groups *mg,
                        if (map == NULL)
                                continue;
 
-                       snprintf(path, sizeof(path), "%s/%s",
-                                dir_name, dent->d_name);
-
                        long_name = strdup(path);
                        if (long_name == NULL) {
                                ret = -1;