X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcommon%2Findex%2Findex.c;h=40ac0de199cd53bdcba43bb80bbd91253e63276e;hb=2239b15a8b2a1f0bd81c9c1da3d74de3529ca493;hp=12d54e00639e353405ca9e23cd0b1f8ae5014dce;hpb=0a20c4a200d8e304ed8d7892b01d727f25c2673d;p=lttng-tools.git diff --git a/src/common/index/index.c b/src/common/index/index.c index 12d54e006..40ac0de19 100644 --- a/src/common/index/index.c +++ b/src/common/index/index.c @@ -35,7 +35,7 @@ * * Return allocated struct lttng_index_file, NULL on error. */ -struct lttng_index_file *lttng_index_file_create(char *path_name, +struct lttng_index_file *lttng_index_file_create(const char *path_name, char *stream_name, int uid, int gid, uint64_t size, uint64_t count, uint32_t major, uint32_t minor) { @@ -171,10 +171,14 @@ int lttng_index_file_read(const struct lttng_index_file *index_file, } ret = lttng_read(fd, element, len); - if (ret < len) { + if (ret < 0) { PERROR("read index file"); goto error; } + if (ret < len) { + ERR("lttng_read expected %zu, returned %zd", len, ret); + goto error; + } return 0; error: