diff options
author | Jose-Luis Rivas <ghostbar@riseup.net> | 2016-02-22 09:47:00 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-02-22 14:49:09 +0000 |
commit | 9066cd752ccf63068d6ea900c29b14ac61868b8b (patch) | |
tree | 7efa3ac0ebdb9cb8c88d185e81d42045fb2ebb21 /main/nodejs/issue-4221.patch | |
parent | eab4343d4108ba85530b8141ae3fe0a2242cd72b (diff) | |
download | aports-9066cd752ccf63068d6ea900c29b14ac61868b8b.tar.bz2 aports-9066cd752ccf63068d6ea900c29b14ac61868b8b.tar.xz |
main/nodejs: upgrade to 4.3.1
- delete issue-4221.patch, it was applied in commit
761cf2bf6a67307bb234a10b10fccdfd7893575c.
- change source to use https url.
Diffstat (limited to 'main/nodejs/issue-4221.patch')
-rw-r--r-- | main/nodejs/issue-4221.patch | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/main/nodejs/issue-4221.patch b/main/nodejs/issue-4221.patch deleted file mode 100644 index 1e592e2337..0000000000 --- a/main/nodejs/issue-4221.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/src/node_crypto.cc b/src/node_crypto.cc -index 63d767a..1b4cc1a 100644 ---- a/src/node_crypto.cc -+++ b/src/node_crypto.cc -@@ -3556,8 +3556,7 @@ bool Hash::HashInit(const char* hash_type) { - if (md_ == nullptr) - return false; - EVP_MD_CTX_init(&mdctx_); -- EVP_DigestInit_ex(&mdctx_, md_, nullptr); -- if (0 != ERR_peek_error()) { -+ if (EVP_DigestInit_ex(&mdctx_, md_, nullptr) <= 0) { - return false; - } - initialised_ = true; |