summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/pdfwriter_impl.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-03-11 09:56:57 +0200
committerAndras Timar <andras.timar@collabora.com>2015-03-11 13:00:41 +0100
commitbe399b647b3d4d96b938827ee39292073d886839 (patch)
tree886d63574bac979ef5c6459aea35bffb7b760484 /vcl/source/gdi/pdfwriter_impl.cxx
parentfd523a3d028f20f1599b767de9c8e1239764074a (diff)
Move more variables out of the timestamping block
One or more pointers into them apparently gets stored into the NSSCMSMessage data structures during the my_NSS_CMSSignerInfo_AddUnauthAttr() call, and thus when the variables go out of scope said data can and will be reused for some arbitrary other thing, and those pointers in the NSSCMSMessage will point to bogus data. Avoids a crash when compiled with gcc. (No crash when compiled with Clang, it apparently allocates nested block stack variables differently.) (The Windows MSVC build uses a different code path entirely here.) Change-Id: Ic941d766904a216cce86ee6bd38864801b9110e8 (cherry picked from commit 90a684b32b93988e890d854deff384addd875de9)
Diffstat (limited to 'vcl/source/gdi/pdfwriter_impl.cxx')
-rw-r--r--vcl/source/gdi/pdfwriter_impl.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/vcl/source/gdi/pdfwriter_impl.cxx b/vcl/source/gdi/pdfwriter_impl.cxx
index 7fa5b14ab815..27f2c1b720c0 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -6857,6 +6857,10 @@ bool PDFWriterImpl::finalizeSignature()
char *pass(strdup(OUStringToOString( m_aContext.SignPassword, RTL_TEXTENCODING_UTF8 ).getStr()));
+ TimeStampReq src;
+ OStringBuffer response_buffer;
+ TimeStampResp response;
+ SECItem response_item;
NSSCMSAttribute timestamp;
SECItem values[2];
SECItem *valuesp = values;
@@ -6927,7 +6931,6 @@ bool PDFWriterImpl::finalizeSignature()
fclose(out);
}
#endif
- TimeStampReq src;
unsigned char cOne = 1;
src.version.type = siUnsignedInteger;
@@ -7029,8 +7032,6 @@ bool PDFWriterImpl::finalizeSignature()
return false;
}
- OStringBuffer response_buffer;
-
if ((rc = curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response_buffer)) != CURLE_OK ||
(rc = curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, AppendToBuffer)) != CURLE_OK)
{
@@ -7094,10 +7095,8 @@ bool PDFWriterImpl::finalizeSignature()
curl_easy_cleanup(curl);
SECITEM_FreeItem(timestamp_request, PR_TRUE);
- TimeStampResp response;
memset(&response, 0, sizeof(response));
- SECItem response_item;
response_item.type = siBuffer;
response_item.data = reinterpret_cast<unsigned char*>(const_cast<char*>(response_buffer.getStr()));
response_item.len = response_buffer.getLength();