Skip to content
Snippets Groups Projects
Commit 1b1c2fad authored by Danil Martynenko's avatar Danil Martynenko
Browse files

[*] Temporary CPP-style casts

parent ef4ddf7d
No related branches found
No related tags found
No related merge requests found
...@@ -256,7 +256,7 @@ void Cert::savePubCert(const char * saveDir, const char * newName) { ...@@ -256,7 +256,7 @@ void Cert::savePubCert(const char * saveDir, const char * newName) {
l_cert_new->enc_key = dap_enc_key_new( m_cert->enc_key->type); l_cert_new->enc_key = dap_enc_key_new( m_cert->enc_key->type);
// Copy only public key // Copy only public key
l_cert_new->enc_key->pub_key_data = DAP_DUP_SIZE(m_cert->enc_key->pub_key_data, l_cert_new->enc_key->pub_key_data = DAP_DUP_SIZE(DAP_CAST_PTR(char, m_cert->enc_key->pub_key_data),
m_cert->enc_key->pub_key_data_size); m_cert->enc_key->pub_key_data_size);
if(!l_cert_new->enc_key->pub_key_data) { if(!l_cert_new->enc_key->pub_key_data) {
qDebug() << "Memory allocation error"; qDebug() << "Memory allocation error";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment