~ubuntu-branches/ubuntu/saucy/curl/saucy-security

« back to all changes in this revision

Viewing changes to lib/md4.c

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2012-05-22 14:53:29 UTC
  • mfrom: (3.4.28 sid)
  • Revision ID: package-import@ubuntu.com-20120522145329-hbf1n3zr7qh08qab
Tags: 7.25.0-1ubuntu1
* Merge from Debian testing (LP: #1003049).  Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
  - Also closes (LP: #855291)
* debian/patches/CVE-2012-0036.patch: Dropped. CVE resolved upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#ifdef USE_NSS
28
28
 
29
29
#include "curl_md4.h"
 
30
#include "warnless.h"
30
31
 
31
32
typedef unsigned int UINT4;
32
33
 
275
276
{
276
277
  MD4_CTX ctx;
277
278
  MD4Init(&ctx);
278
 
  MD4Update(&ctx, input, (unsigned int)len);
 
279
  MD4Update(&ctx, input, curlx_uztoui(len));
279
280
  MD4Final(output, &ctx);
280
281
}
281
282
#endif /* USE_NSS */