Kaydet (Commit) 0048a115 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#982248 Unchecked return value

Change-Id: Ice8c1b3eab28fc8ef27d802f64b7dd90a0614e42
üst 3661bcde
...@@ -375,7 +375,7 @@ extern "C" void nsscrypto_finalize() ...@@ -375,7 +375,7 @@ extern "C" void nsscrypto_finalize()
SAL_INFO("xmlsecurity.xmlsec", "Unloading module \"" ROOT_CERTS "\" failed because it was not found."); SAL_INFO("xmlsecurity.xmlsec", "Unloading module \"" ROOT_CERTS "\" failed because it was not found.");
} }
PK11_LogoutAll(); PK11_LogoutAll();
NSS_Shutdown(); (void)NSS_Shutdown();
} }
ONSSInitializer::ONSSInitializer( ONSSInitializer::ONSSInitializer(
......
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