From a09ed3f26a1fab54079c37c49df5c440cc792f78 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Thu, 12 Jan 2017 11:44:11 +0100 Subject: [PATCH] qt: Don't use qstrdup in test passphrase cb * lang/qt/tests/t-support.h (TestPassphraseProvider::getPassphrase): Use gpgrt_asprintf instead of strdup. -- To avoid problems on MacOS we want to avoid strdup so that qgpgme can be built without extensions. But qstrdup allocates with new and not with malloc, so use gpgrt_asprintf instead. --- lang/qt/tests/t-support.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lang/qt/tests/t-support.h b/lang/qt/tests/t-support.h index 2630b7d4..e3f0e781 100644 --- a/lang/qt/tests/t-support.h +++ b/lang/qt/tests/t-support.h @@ -34,6 +34,8 @@ #include "interfaces/passphraseprovider.h" #include +#include + namespace GpgME { class TestPassphraseProvider : public PassphraseProvider @@ -42,7 +44,9 @@ public: char *getPassphrase(const char * /*useridHint*/, const char * /*description*/, bool /*previousWasBad*/, bool &/*canceled*/) Q_DECL_OVERRIDE { - return qstrdup("abc"); + char *ret; + gpgrt_asprintf(&ret, "abc"); + return ret; } }; } // namespace GpgME