Correct missed return code path.
am: 827243a972

Change-Id: Ib3dfefeaf8e53015ffb70cb131e6e1fa4847929e
diff --git a/keystore/key_store_service.cpp b/keystore/key_store_service.cpp
index c33a1d0..3a57e07 100644
--- a/keystore/key_store_service.cpp
+++ b/keystore/key_store_service.cpp
@@ -1078,7 +1078,10 @@
     // If per-operation auth is needed we need to begin the operation and
     // the client will need to authorize that operation before calling
     // update. Any other auth issues stop here.
-    if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) return;
+    if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) {
+        result->resultCode = authResult;
+        return;
+    }
 
     addAuthTokenToParams(&opParams, authToken);