Kaydet (Commit) 7bcb105a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1427630 Unchecked return value

Change-Id: If92d5b080ce9a4e28fe15da1448f74ecf0a31257
üst 6ae487db
...@@ -425,8 +425,8 @@ SAL_CALL XMLSignature_GpgImpl::validate( ...@@ -425,8 +425,8 @@ SAL_CALL XMLSignature_GpgImpl::validate(
xmlFree(pKeyPacket); xmlFree(pKeyPacket);
// and re-run (rewind text and signature streams to position 0) // and re-run (rewind text and signature streams to position 0)
data_text.seek(0,SEEK_SET); (void)data_text.seek(0,SEEK_SET);
data_signature.seek(0,SEEK_SET); (void)data_signature.seek(0,SEEK_SET);
verify_res=rCtx.verifyDetachedSignature(data_signature, data_text); verify_res=rCtx.verifyDetachedSignature(data_signature, data_text);
// TODO: needs some more error handling, needs checking _all_ signatures // TODO: needs some more error handling, needs checking _all_ signatures
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment