1
1

Merge pull request #794 from nrgraham23/java_handle_bugfix

Java null handle bugfix
Этот коммит содержится в:
Howard Pritchard 2015-08-11 12:30:19 -06:00
родитель eb846ef427 8f4c16da27
Коммит 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;
} }