mirror of
https://github.com/corda/corda.git
synced 2025-03-23 20:45:23 +00:00
fix uninitialized variable warning
This commit is contained in:
parent
d693393293
commit
34cc390286
@ -527,7 +527,7 @@ Java_java_lang_Runtime_load(Thread* t, jclass, jstring name, jboolean mapName)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
System::Library* last;
|
System::Library* last = t->m->libraries;
|
||||||
for (System::Library* lib = t->m->libraries; lib; lib = lib->next()) {
|
for (System::Library* lib = t->m->libraries; lib; lib = lib->next()) {
|
||||||
if (lib->name()
|
if (lib->name()
|
||||||
and strcmp(lib->name(), n) == 0
|
and strcmp(lib->name(), n) == 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user