From dca6e514c81e3ad0ec806f79b774b3707b313f63 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Mon, 10 Feb 2025 02:45:42 +0100 Subject: Build fixes for -Og MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cleaning... 18 files. [35/69] Compiling C object example/passthrough_ll.p/passthrough_ll.c.o ../example/passthrough_ll.c: In function ‘lo_opendir’: ../example/passthrough_ll.c:666:20: warning: ‘fd’ may be used uninitialized [-Wmaybe-uninitialized] 666 | if (fd != -1) | ^ ../example/passthrough_ll.c:637:13: note: ‘fd’ was declared here 637 | int fd; | ^~ [38/69] Compiling C object test/test_syscalls.p/test_syscalls.c.o ../test/test_syscalls.c: In function ‘test_seekdir’: ../test/test_syscalls.c:804:16: warning: ‘de’ may be used uninitialized [-Wmaybe-uninitialized] 804 | while (de) | ^~ ../test/test_syscalls.c:776:24: note: ‘de’ was declared here 776 | struct dirent *de; | ^~ These are actually valid. Signed-off-by: Bernd Schubert --- example/passthrough_ll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example') diff --git a/example/passthrough_ll.c b/example/passthrough_ll.c index e1a36ef..fa8abb8 100644 --- a/example/passthrough_ll.c +++ b/example/passthrough_ll.c @@ -634,7 +634,7 @@ static void lo_opendir(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi int error = ENOMEM; struct lo_data *lo = lo_data(req); struct lo_dirp *d; - int fd; + int fd = -1; d = calloc(1, sizeof(struct lo_dirp)); if (d == NULL) -- cgit v1.2.3