CB-5278: We must close the cursor or we take down the whole app, and the debugger doesn't catch it.
diff --git a/src/android/ContactAccessorSdk5.java b/src/android/ContactAccessorSdk5.java
index 023d30d..541e11d 100644
--- a/src/android/ContactAccessorSdk5.java
+++ b/src/android/ContactAccessorSdk5.java
@@ -1813,6 +1813,8 @@
             Log.d(LOG_TAG, "Could not find contact with ID");
         }
 
+        cursor.close();
+
         return (result > 0) ? true : false;
     }