Merge pull request #794 from nrgraham23/java_handle_bugfix
Java null handle bugfix
Этот коммит содержится в:
Коммит
f1ac629c9d
@ -471,8 +471,12 @@ public class Request implements Freeable
|
|||||||
{
|
{
|
||||||
long[] h = new long[r.length];
|
long[] h = new long[r.length];
|
||||||
|
|
||||||
for(int i = 0; i < r.length; i++)
|
for(int i = 0; i < r.length; i++) {
|
||||||
h[i] = r[i].handle;
|
if(r[i] != null)
|
||||||
|
h[i] = r[i].handle;
|
||||||
|
else
|
||||||
|
h[i] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
return h;
|
return h;
|
||||||
}
|
}
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user