root/root-fix-bad-regex.patch
Mattias Ellert b2cd752635 Update to 6.22.00
Drop patches accepted upstream
  root-FitData-assert-fix.patch
  root-clang-altivec-vector.patch
  root-format-fix.patch
  root-moved-file.patch
  root-xmlmodify-dep.patch
New and improved Python bindings
The new Python bindings can be built for both Python 2 and Python 3
  out of the box. Dropped the workaround in specfile for this (EPEL 7)
Dropped the python3-other packages (EPEL 7)
The new Python bindings has split the TPython interface to a separate
  library. Now in a separate root-tpython package
root-tpython and root-tmva-python are now using Python 3 on EPEL 7
New subpackage root-gui-browsable
New patches (submitted upstream)
  Fix too aggressive -Werror replacements
  Add missing call to TFile::SetCacheFileDir in a TMVA tutorial
  Adjust stressGraphics.ref
  Fix off-by-one error in histogram v7 bin iterator
  Compatibility with python 2.7 versions before 2.7.9
  Fix the RNTuple.LargeFile test on 32bit (i386 and armv7hf)
  Fix doxygen issues
  Fix bad regex in TProofMgr
  Compatibility with xrootd 5
2020-07-15 04:44:51 +02:00

25 lines
849 B
Diff

From b7dc989f9a49ad31094331aa272859ff7480f943 Mon Sep 17 00:00:00 2001
From: Mattias Ellert <mattias.ellert@physics.uu.se>
Date: Thu, 9 Jul 2020 21:29:46 +0200
Subject: [PATCH] Fix bad regex
---
proof/proof/src/TProofMgr.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/proof/proof/src/TProofMgr.cxx b/proof/proof/src/TProofMgr.cxx
index 2a140e4e7a..35c91b77ac 100644
--- a/proof/proof/src/TProofMgr.cxx
+++ b/proof/proof/src/TProofMgr.cxx
@@ -820,7 +820,7 @@ TFileCollection *TProofMgr::UploadFiles(TList *src,
if (dest && strlen(dest) > 0) {
TString dst(dest), dt;
Ssiz_t from = 0;
- TRegexp re("<d+[0-9]>");
+ TRegexp re("<d[0-9]+>");
while (dst.Tokenize(dt, from, "/")) {
if (dt.Contains(re)) {
TParameter<Int_t> *pi = new TParameter<Int_t>(dt, -1);
--
2.26.2