X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Findex%2Findex.c;h=12d54e00639e353405ca9e23cd0b1f8ae5014dce;hb=97056403bdb7c18abe9c1e8e0824e3a64123c4c2;hp=c94ec701c869f2df3bf61e2845409d3c46697131;hpb=0b0ac4a97d325a6938992f5c04987d5d48167a21;p=lttng-tools.git diff --git a/src/common/index/index.c b/src/common/index/index.c index c94ec701c..12d54e006 100644 --- a/src/common/index/index.c +++ b/src/common/index/index.c @@ -96,7 +96,6 @@ struct lttng_index_file *lttng_index_file_create(char *path_name, size_ret = lttng_write(fd, &hdr, sizeof(hdr)); if (size_ret < sizeof(hdr)) { PERROR("write index header"); - ret = -1; goto error; } index_file->fd = fd; @@ -223,11 +222,7 @@ struct lttng_index_file *lttng_index_file_open(const char *path_name, DBG("Index opening file %s in read only", fullpath); read_fd = open(fullpath, O_RDONLY); if (read_fd < 0) { - if (errno == ENOENT) { - ret = -ENOENT; - } else { - PERROR("opening index in read-only"); - } + PERROR("opening index in read-only"); goto error; } @@ -271,7 +266,6 @@ error_close: PERROR("close read fd %d", read_fd); } } - ret = -1; error: free(index_file);