diff options
author | Andre Heinecke <[email protected]> | 2017-03-13 10:14:54 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2017-03-13 10:17:47 +0000 |
commit | 9d5048d47446450a34cae4f27eb81c02ea5d4afc (patch) | |
tree | dd198b1ba5c05bd1c126b6bc964deaad1bbe9fb6 | |
parent | core: Fix status error return for gpgsm. (diff) | |
download | gpgme-9d5048d47446450a34cae4f27eb81c02ea5d4afc.tar.gz gpgme-9d5048d47446450a34cae4f27eb81c02ea5d4afc.zip |
qt: Use gpgrt_asprintf instead of qstrdup
* lang/qt/src/dn.cpp (parse_dn_part): Use gpgrt_asprintf instead
of qstrdup.
--
This fixes a new / free mismatch because qstrdup uses new and
the allocated parts are freed with free. Similar to: a09ed3f2
-rw-r--r-- | lang/qt/src/dn.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/qt/src/dn.cpp b/lang/qt/src/dn.cpp index 3376aef1..f9fb2f6f 100644 --- a/lang/qt/src/dn.cpp +++ b/lang/qt/src/dn.cpp @@ -37,7 +37,7 @@ #include "dn.h" -#include <strings.h> +#include <gpg-error.h> static const struct { const char *name; @@ -167,7 +167,7 @@ parse_dn_part(DnPair *array, const unsigned char *string) for (unsigned int i = 0; i < numOidMaps; ++i) if (!strcasecmp((char *)p, oidmap[i].oid)) { free(p); - p = qstrdup(oidmap[i].name); + gpgrt_asprintf(&p, oidmap[i].name); break; } array->key = p; |