Bug 640992 - nss_cms_before_data loses the child's content pointer on recursive decoding, r=rrelyea

git-svn-id: svn://10.0.0.236/trunk@262047 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
emaldona%redhat.com 2011-03-15 17:45:21 +00:00
parent ec7c645693
commit 331db14476

View File

@ -37,7 +37,7 @@
/*
* CMS decoding.
*
* $Id: cmsdecode.c,v 1.12 2011-02-11 01:53:17 emaldona%redhat.com Exp $
* $Id: cmsdecode.c,v 1.13 2011-03-15 17:45:21 emaldona%redhat.com Exp $
*/
#include "cmslocal.h"
@ -291,6 +291,9 @@ nss_cms_before_data(NSSCMSDecoderContext *p7dcx)
if (childp7dcx->content.pointer == NULL)
goto loser;
/* give the parent a copy of the pointer so that it doesn't get lost */
cinfo->content.pointer = childp7dcx->content.pointer;
/* start the child decoder */
childp7dcx->dcx = SEC_ASN1DecoderStart(poolp, childp7dcx->content.pointer,
template);