[cpp-sp] branch master updated: CPPOST-98 Skip signature filters

Rod Widdowson rdw at steadingsoftware.com
Mon Nov 27 12:28:54 EST 2017


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch master
in repository cpp-sp.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=12fc53d75ff34d5aedb1aa9d7c0ff72a47cfbd79

The following commit(s) were added to refs/heads/master by this push:
       new  12fc53d   CPPOST-98 Skip signature filters
12fc53d is described below

commit 12fc53d75ff34d5aedb1aa9d7c0ff72a47cfbd79
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Mon Nov 27 17:28:29 2017 +0000

    CPPOST-98 Skip signature filters
    
    https://issues.shibboleth.net/jira/browse/CPPOST-98
    
    Fix previous commit.
---
 shibsp/metadata/DynamicMetadataProvider.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/shibsp/metadata/DynamicMetadataProvider.cpp b/shibsp/metadata/DynamicMetadataProvider.cpp
index df23c07..d21a4cb 100644
--- a/shibsp/metadata/DynamicMetadataProvider.cpp
+++ b/shibsp/metadata/DynamicMetadataProvider.cpp
@@ -461,7 +461,8 @@ void *DynamicMetadataProvider::init_fn(void* pv)
                 auto_ptr<EntityDescriptor> entity (me->entityFromStream(thisFileEntry));
                 thisFileEntry.close();
                 if (entity.get()) {
-                    me->doFilters(BatchLoadMetadataFilterContext(true),  *entity);
+                    const BatchLoadMetadataFilterContext bc(true);
+                    me->doFilters(&bc, *entity);
                     me->cacheEntity(entity.get());
                     entity.release();
                 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list