| 227 | } |
| 228 | |
| 229 | void clean(JNIEnv* e, jobjectArray command, char** p) |
| 230 | { |
| 231 | int i = 0; |
| 232 | for (char** x = p; *x; ++x, ++i) { |
| 233 | jstring element = (jstring)e->GetObjectArrayElement(command, i); |
| 234 | e->ReleaseStringUTFChars(element, *x); |
| 235 | } |
| 236 | free(p); |
| 237 | } |
| 238 | #endif |
| 239 | } |
| 240 |
no test coverage detected