~ubuntu-branches/ubuntu/precise/wine1.3/precise

« back to all changes in this revision

Viewing changes to dlls/crypt32/encode.c

  • Committer: Package Import Robot
  • Author(s): Scott Ritchie
  • Date: 2012-01-17 09:00:34 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120117090034-eyhpp02jawlvrrkc
Tags: 1.3.37-0ubuntu1
* New upstream release
  - Many changes
* Convert to 3.0 source format
* debian/control:
  - Remove pre-multiarch amd64 build depends
  - Remove quilt build depends
  - Recommend proper gecko versions
* debian/rules:
  - Remove manual dh_quilt patch and unpatch
  - No need to uuencode/uudecode anymore with new source format

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
    DWORD i, dataLen = 0;
186
186
 
187
187
    TRACE("%p, %d, %08x, %p, %p, %d\n", items, cItem, dwFlags, pEncodePara,
188
 
     pbEncoded, *pcbEncoded);
 
188
     pbEncoded, pbEncoded ? *pcbEncoded : 0);
189
189
    for (i = 0, ret = TRUE; ret && i < cItem; i++)
190
190
    {
191
191
        ret = items[i].encodeFunc(dwCertEncodingType, NULL,
580
580
    DWORD cItem = 2;
581
581
    BOOL ret;
582
582
 
583
 
    TRACE("%p, %p, %p\n", entry, pbEncoded, pcbEncoded);
 
583
    TRACE("%p, %p, %d\n", entry, pbEncoded, pbEncoded ? *pcbEncoded : 0);
584
584
 
585
585
    if (entry->cExtension)
586
586
    {
736
736
    };
737
737
    DWORD cItem = 1;
738
738
 
739
 
    TRACE("%p, %p, %d\n", ext, pbEncoded, *pcbEncoded);
 
739
    TRACE("%p, %p, %d\n", ext, pbEncoded, pbEncoded ? *pcbEncoded : 0);
740
740
 
741
741
    if (ext->fCritical)
742
742
    {
3194
3194
        DWORD bytesNeeded, lenBytes;
3195
3195
 
3196
3196
        TRACE("(%d, %p), %08x, %p, %p, %d\n", blob->cbData, blob->pbData,
3197
 
         dwFlags, pEncodePara, pbEncoded, *pcbEncoded);
 
3197
         dwFlags, pEncodePara, pbEncoded, pbEncoded ? *pcbEncoded : 0);
3198
3198
 
3199
3199
        CRYPT_EncodeLen(blob->cbData, NULL, &lenBytes);
3200
3200
        bytesNeeded = 1 + lenBytes + blob->cbData;