From 10502e34a10fb3b672aef1161cc271003c7806ba Mon Sep 17 00:00:00 2001 From: Abhishek Koneru Date: Wed, 27 Jun 2012 14:27:55 -0400 Subject: Fixes for Guarded_By_Violation issues shown in Coverity --- base/silent/src/com/netscape/pkisilent/common/ComCrypto.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/silent') diff --git a/base/silent/src/com/netscape/pkisilent/common/ComCrypto.java b/base/silent/src/com/netscape/pkisilent/common/ComCrypto.java index 48b364349..7abe775a3 100644 --- a/base/silent/src/com/netscape/pkisilent/common/ComCrypto.java +++ b/base/silent/src/com/netscape/pkisilent/common/ComCrypto.java @@ -141,7 +141,7 @@ public class ComCrypto { certpackage = cd; } - public void setGenerateRequest(boolean c) { + public synchronized void setGenerateRequest(boolean c) { generaterequest = c; } @@ -167,7 +167,7 @@ public class ComCrypto { dualkey = dkey; } - public String getPkcs10Request() { + public synchronized String getPkcs10Request() { return pkcs10request; } -- cgit