From 24ab8717d459c07c51f47b7b66736de17ca23e9e Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 9 Jan 2018 20:48:35 +1000 Subject: Handle empty string passed to query_owner Passing an empty string to pacman -Qo results in: error: No package owns Catch empty strings and report an error. Signed-off-by: Allan McRae --- src/pacman/query.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/pacman/query.c b/src/pacman/query.c index 024d3e21..4a37a338 100644 --- a/src/pacman/query.c +++ b/src/pacman/query.c @@ -165,6 +165,11 @@ static int query_fileowner(alpm_list_t *targets) goto targcleanup; } + if(strcmp(filename, "") == 0) { + pm_printf(ALPM_LOG_ERROR, _("empty string passed to file owner query\n")); + goto targcleanup; + } + /* trailing '/' causes lstat to dereference directory symlinks */ len = strlen(filename) - 1; while(len > 0 && filename[len] == '/') { -- cgit v1.2.3-24-g4f1b