[Libreoffice-commits] .: solenv/bin
Christian Lohmaier
cloph at kemper.freedesktop.org
Tue Mar 1 04:35:58 PST 2011
solenv/bin/modules/installer/worker.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 598ea7f85d4ed707c9c5ced0b26e5fae8a62d64c
Author: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
Date: Tue Mar 1 13:41:25 2011 +0100
fix nested quantifiers in regex
diff --git a/solenv/bin/modules/installer/worker.pm b/solenv/bin/modules/installer/worker.pm
index 9fd8831..4c7d7cd 100644
--- a/solenv/bin/modules/installer/worker.pm
+++ b/solenv/bin/modules/installer/worker.pm
@@ -1741,7 +1741,7 @@ sub get_all_files_from_filelist
my @allpackages = ();
for (@{$listfile}) {
- next unless /^\s*+([^#].*?)\s*$/;
+ next unless /^\s*([^#].*?)\s*$/;
push @allpackages, $1;
}
More information about the Libreoffice-commits
mailing list