mirror of https://github.com/n1nj4sec/pupy.git
jni: fix typo
This commit is contained in:
parent
d3a4613de7
commit
35e707f4eb
|
@ -586,7 +586,7 @@ static
|
||||||
PyObject *Py_get_preferred_classloader_name(PyObject *self, PyObject *args) {
|
PyObject *Py_get_preferred_classloader_name(PyObject *self, PyObject *args) {
|
||||||
char *new_classloader_name = NULL;
|
char *new_classloader_name = NULL;
|
||||||
|
|
||||||
if (new_classloader_name != NULL && new_classloader_name[0] != '\0') {
|
if (new_classloader_name != NULL || new_classloader_name[0] != '\0') {
|
||||||
return Py_BuildValue("");
|
return Py_BuildValue("");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue