Dump inflated data on one-pass operation.
authorcantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Fri, 3 Nov 2006 23:15:36 +0000 (23:15 +0000)
committercantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Fri, 3 Nov 2006 23:15:36 +0000 (23:15 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@110 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0

saml/saml2/binding/impl/SAML2Redirect.cpp

index b90a89b..d221bf3 100644 (file)
@@ -78,6 +78,10 @@ unsigned int opensaml::saml2p::inflate(char* in, unsigned int in_len, ostream& o
         ret = inflate(&z, Z_SYNC_FLUSH);
         switch (ret) {
             case Z_STREAM_END:
+                ret = z.next_out - buf;
+                z.next_out = buf;
+                while (ret--)
+                    out << *(z.next_out++);
                 goto done;
                 
             case Z_OK:  /* avail_out should be 0 now. Time to dump the buffer. */