Fix format handling in resolver, correct DDF looping bugs.
[shibboleth/cpp-sp.git] / shibsp / attribute / SimpleAttribute.h
index 7420b6f..0f2bd15 100644 (file)
@@ -49,7 +49,7 @@ namespace shibsp {
             DDF val = in.first().first();
             while (val.string()) {
                 m_serialized.push_back(val.string());
-                val = val.next();
+                val = in.first().next();
             }
         }