change API cs_close() to take pointer to handle as argument. this lets us invalidate the closed handle
diff --git a/tests/test_mips.c b/tests/test_mips.c
index e4eb0c3..fb6ea96 100644
--- a/tests/test_mips.c
+++ b/tests/test_mips.c
@@ -131,7 +131,7 @@
 
 		printf("\n");
 
-		cs_close(handle);
+		cs_close(&handle);
 	}
 }