commit | 17379d2b085db9fcee114caea08c448c4293e66f | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Aug 03 11:11:22 2015 -0700 |
committer | Elliott Hughes <enh@google.com> | Mon Aug 03 11:11:22 2015 -0700 |
tree | 20f6f24bfe9aaf878fd3d9f601de4e525f675c5e | |
parent | 2278d29ada4cda53d81b87446254cea16e1b24fa [diff] |
Cherrypick upstream fnmatch.c fix. Bug: http://b/22855370 Change-Id: I3865cff1e2ffeb6709cea092be3770c1bebf1623
diff --git a/libc/upstream-openbsd/lib/libc/gen/fnmatch.c b/libc/upstream-openbsd/lib/libc/gen/fnmatch.c index e83dc43..0d0f18f 100644 --- a/libc/upstream-openbsd/lib/libc/gen/fnmatch.c +++ b/libc/upstream-openbsd/lib/libc/gen/fnmatch.c
@@ -1,4 +1,4 @@ -/* $OpenBSD: fnmatch.c,v 1.18 2014/12/11 16:25:34 millert Exp $ */ +/* $OpenBSD: fnmatch.c,v 1.19 2015/08/01 18:11:08 millert Exp $ */ /* Copyright (c) 2011, VMware, Inc. * All rights reserved. @@ -192,6 +192,8 @@ result = 0; continue; } + if (!**pattern) + break; leadingclosebrace: /* Look at only well-formed range patterns;