void-packages/srcpkgs/kdelibs4support/patches/ksslcertificate.patch
Sir-Boops 96e3a84d7d kdelibs: update to 5.40.0 (#9151)
* extra-cmake-modules: update to 5.40.0

* breeze-icons: update to 5.40.0

* kconfig: update to 5.40.0

* kcoreaddons: update to 5.40.0

* kactivities5: update to 5.40.0

* karchive: update to 5.40.0

* ki18n: update to 5.40.0

* kwidgetsaddons: update to 5.40.0

* kauth: update to 5.40.0

* kcodecs: update to 5.40.0

* kguiaddons: update to 5.40.0

* kconfigwidgets: update to 5.40.0

* kitemviews: update to 5.40.0

* kiconthemes: update to 5.40.0

* kdbusaddons: update to 5.40.0

* kwindowsystem: update to 5.40.0

* kcrash: update to 5.40.0

* kservice: update to 5.40.0

* ksolid: update to 5.40.0

* kdoctools: update to 5.40.0

* kcompletion: update to 5.40.0

* sonnet: update to 5.40.0

* ktextwidgets: update to 5.40.0

* kglobalaccel: update to 5.40.0

* kxmlgui: update to 5.40.0

* kbookmarks: update to 5.40.0

* kjobwidgets: update to 5.40.0

* kio: update to 5.40.0

* kpackage: update to 5.40.0

* kdeclarative: update to 5.40.0

* kdesignerplugin: update to 5.40.0

* kemoticons: update to 5.40.0

* knotifications: update to 5.40.0

* kparts: update to 5.40.0

* kunitconversion: update to 5.40.0

* kinit: update to 5.40.0

* kded: update to 5.40.0

* kjs: update to 5.40.0

* kwallet: update to 5.40.0

* khtml: update to 5.40.0

* kidletime: update to 5.40.0

* attica-qt5: update to 5.40.0

* knewstuff: update to 5.40.0

* syntax-highlighting: update to 5.40.0

* ktexteditor: update to 5.40.0

* kwayland: update to 5.40.0

* networkmanager-qt5: update to 5.40.0

* kfilemetadata5: update to 5.40.0

* baloo5: update to 5.40.0

* bluez-qt5: update to 5.40.0

* frameworkintegration: update to 5.40.0

* kactivities5-stats: update to 5.40.0

* kapidox: update to 5.40.0

* kcmutils: update to 5.40.0

* kpty: update to 5.40.0

* kimageformats: update to 5.40.0

* kitemmodels: update to 5.40.0

* knotifyconfig: update to 5.40.0

* kpeople: update to 5.40.0

* kplotting: update to 5.40.0

* plasma-framework: update to 5.40.0

* threadweaver: update to 5.40.0

* krunner: update to 5.40.0

* kxmlrpcclient: update to 5.40.0

* modemmanager-qt5: update to 5.40.0

* kjsembed: update to 5.40.0

* kmediaplayer: update to 5.40.0

* kdesu: update to 5.40.0

* kdewebkit: update to 5.40.0

* kdnssd: update to 5.40.0

* kross: update to 5.40.0

* oxygen-icons5: update to 5.40.0

* kdelibs4support: update to 5.40.0
2017-11-14 09:23:55 +01:00

71 lines
1.8 KiB
Diff

--- src/kssl/ksslcertificate.cpp 2017-11-05 01:28:12.000000000 -0700
+++ src/kssl/ksslcertificate.cpp 2017-11-13 01:45:27.716000000 -0700
@@ -168,7 +168,7 @@
return rc;
}
rc = t;
- d->kossl->OPENSSL_free(t);
+ d->kossl->OPENSSL_sk_free(t);
#endif
return rc;
}
@@ -356,12 +356,12 @@
rc += x[i];
}
rc += '\n';
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
x = d->kossl->BN_bn2hex(e);
rc += i18n("Exponent: 0x") + QLatin1String(x) +
QLatin1String("\n");
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
}
#endif
#ifndef NO_DSA
@@ -383,7 +383,7 @@
rc += x[i];
}
rc += '\n';
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
x = d->kossl->BN_bn2hex(q);
rc += i18n("160 bit prime factor: ");
@@ -396,7 +396,7 @@
rc += x[i];
}
rc += '\n';
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
x = d->kossl->BN_bn2hex(g);
rc += QString("g: ");
@@ -409,7 +409,7 @@
rc += x[i];
}
rc += '\n';
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
const BIGNUM *pub_key;
d->kossl->DSA_get0_key(dsa, &pub_key, nullptr);
@@ -424,7 +424,7 @@
rc += x[i];
}
rc += '\n';
- d->kossl->OPENSSL_free(x);
+ d->kossl->OPENSSL_sk_free(x);
}
#endif
d->kossl->EVP_PKEY_free(pkey);
@@ -446,7 +446,7 @@
}
rc = t;
- d->kossl->OPENSSL_free(t);
+ d->kossl->OPENSSL_sk_free(t);
#endif
return rc;