Skip to content
Snippets Groups Projects
Commit 18029ae9 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

libvlcjni: throw_Exception: use fmt and va_list

parent 59a49e30
No related branches found
No related tags found
No related merge requests found
......@@ -97,8 +97,15 @@ enum vlcjni_exception
};
static inline void throw_Exception(JNIEnv *env, enum vlcjni_exception type,
const char *p_error)
const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
char *error;
if (vasprintf(&error, fmt, args) == -1)
error = NULL;
jclass clazz;
switch (type)
{
......@@ -113,7 +120,10 @@ static inline void throw_Exception(JNIEnv *env, enum vlcjni_exception type,
clazz = fields.IllegalArgumentException.clazz;
break;
}
(*env)->ThrowNew(env, clazz, p_error);
(*env)->ThrowNew(env, clazz, error ? error : fmt);
free(error);
va_end(args);
}
#endif // LIBVLCJNI_VLCOBJECT_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment