blob: 034e98c939d532ebfe4bc32b68e88253196f3be7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Index: scilab-5.2.0/modules/hdf5/src/java/org/scilab/modules/hdf5/read/H5Read.java
===================================================================
--- scilab-5.2.0.orig/modules/hdf5/src/java/org/scilab/modules/hdf5/read/H5Read.java 2010-01-23 22:51:12.000000000 +0100
+++ scilab-5.2.0/modules/hdf5/src/java/org/scilab/modules/hdf5/read/H5Read.java 2010-01-23 22:51:41.000000000 +0100
@@ -53,7 +53,8 @@
int nb_objs = H5.H5Gn_members(fileId, groupName);
String[] allObjectsName = new String[nb_objs];
int[] allObjectsType = new int[nb_objs];
- H5.H5Gget_obj_info_all(fileId, groupName, allObjectsName, allObjectsType);
+ long[] refs = new long[nb_objs];
+ H5.H5Gget_obj_info_all(fileId, groupName, allObjectsName, allObjectsType, refs);
for (int i = 0 ; i < nb_objs ; ++i) {
if (allObjectsType[i] == HDF5Constants.H5G_DATASET) {
|