Commit 8eb44dd7 authored by Thomas Jarosch's avatar Thomas Jarosch Committed by Arnaldo Carvalho de Melo

perf sort: Use pclose() instead of fclose() on pipe stream

cppcheck message:
[tools/perf/util/sort.c:277]: (error) Mismatching allocation and deallocation: fp

Also fix descriptor leak on error and always initialize the "fp" variable.
Signed-off-by: default avatarThomas Jarosch <thomas.jarosch@intra2net.com>
Link: http://lkml.kernel.org/r/1359112354.yZcisNZ4k0@storm
Link: http://lkml.kernel.org/r/2266358.qvDXKLvJ67@stormSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 68c465ad
...@@ -249,7 +249,7 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf, ...@@ -249,7 +249,7 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf,
size_t size, size_t size,
unsigned int width __maybe_unused) unsigned int width __maybe_unused)
{ {
FILE *fp; FILE *fp = NULL;
char cmd[PATH_MAX + 2], *path = self->srcline, *nl; char cmd[PATH_MAX + 2], *path = self->srcline, *nl;
size_t line_len; size_t line_len;
...@@ -270,7 +270,6 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf, ...@@ -270,7 +270,6 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf,
if (getline(&path, &line_len, fp) < 0 || !line_len) if (getline(&path, &line_len, fp) < 0 || !line_len)
goto out_ip; goto out_ip;
fclose(fp);
self->srcline = strdup(path); self->srcline = strdup(path);
if (self->srcline == NULL) if (self->srcline == NULL)
goto out_ip; goto out_ip;
...@@ -280,8 +279,12 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf, ...@@ -280,8 +279,12 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf,
*nl = '\0'; *nl = '\0';
path = self->srcline; path = self->srcline;
out_path: out_path:
if (fp)
pclose(fp);
return repsep_snprintf(bf, size, "%s", path); return repsep_snprintf(bf, size, "%s", path);
out_ip: out_ip:
if (fp)
pclose(fp);
return repsep_snprintf(bf, size, "%-#*llx", BITS_PER_LONG / 4, self->ip); return repsep_snprintf(bf, size, "%-#*llx", BITS_PER_LONG / 4, self->ip);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment