X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fwildcard.c;h=5715e5fcf76f2209e81130f689ebfadd3a9b8196;hb=5b6eaafbaab217fc69946685862a09afa28b30cb;hp=958829a2d7e679c3aa0f1b43dc4b16b662e47b7d;hpb=23ea88c8b6eae44e1a50b104f8a5d3314b59c4e9;p=wimlib diff --git a/src/wildcard.c b/src/wildcard.c index 958829a2..5715e5fc 100644 --- a/src/wildcard.c +++ b/src/wildcard.c @@ -7,20 +7,18 @@ /* * Copyright (C) 2013 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. + * This file is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) any + * later version. * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your option) - * any later version. - * - * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more + * This file is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License - * along with wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ #ifdef HAVE_CONFIG_H @@ -189,7 +187,7 @@ static int match_dentry(struct wim_dentry *cur_dentry, struct match_dentry_ctx *ctx) { const tchar *name; - size_t name_len; + size_t name_nchars; int ret; if (cur_dentry->file_name_nbytes == 0) @@ -197,15 +195,16 @@ match_dentry(struct wim_dentry *cur_dentry, struct match_dentry_ctx *ctx) ret = utf16le_get_tstr(cur_dentry->file_name, cur_dentry->file_name_nbytes, - &name, &name_len); + &name, &name_nchars); if (ret) return ret; - name_len /= sizeof(tchar); + name_nchars /= sizeof(tchar); - if (match_wildcard(name, - &ctx->wildcard_path[ctx->cur_component_offset], - ctx->cur_component_len, - ctx->case_insensitive)) + if (do_match_wildcard(name, + name_nchars, + &ctx->wildcard_path[ctx->cur_component_offset], + ctx->cur_component_len, + ctx->case_insensitive)) { switch (wildcard_status(&ctx->wildcard_path[ ctx->cur_component_offset +