Skip to content

Commit

Permalink
MINC 2022-10-25 (d2a17b7a)
Browse files Browse the repository at this point in the history
Code extracted from:

    https://github.com/BIC-MNI/libminc.git

at commit d2a17b7aa05f0d3645f46646b8bd7e96f2efcf40 (develop).
  • Loading branch information
vfonov authored and seanm committed Oct 25, 2022
1 parent 131ff69 commit 8a13bf6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Peter Neelin designed, coded, and maintained MINC (1992-2002).
David MacDonald designed, coded, and maintained VolumeIO (1991-1998).

Current maintenance is done on the minc-development mailing list.
http://www.bic.mni.mcgill.ca/mailman/listinfo/minc-development
https://mailman.bic.mni.mcgill.ca/mailman/listinfo/minc-development

MINC Contributors (in alphabetical order)

Expand Down
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Minc tools are hosted in https://github.com/BIC-MNI/minc-tools
Additional tools are available from the Montreal Neurological
Institute (MNI).

http://packages.bic.mni.mcgill.ca/tgz
https://packages.bic.mni.mcgill.ca/tgz


SUPPORT FOR HDF5 "MINC 2.0" FORMAT FILES
Expand All @@ -26,7 +26,7 @@ SUPPORT FOR HDF5 "MINC 2.0" FORMAT FILES
This change requires that HDF5 must be installed before MINC can be
built. You can obtain HDF5 from, current version is 1.8.11:

http://www.hdfgroup.org/
https://www.hdfgroup.org/

You should NOT need to become an HDF5 expert to use MINC 2.0.
However, two tools included with HDF5 may prove useful, "h5dump" and
Expand Down Expand Up @@ -106,4 +106,4 @@ MINC_PREFER_V2_API = {1,0}
DOCUMENTATION
-------------

http://en.wikibooks.org/wiki/MINC
https://en.wikibooks.org/wiki/MINC
2 changes: 1 addition & 1 deletion README.release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# how to use git and the master and develop branches

http://nvie.com/posts/a-successful-git-branching-model/
https://nvie.com/posts/a-successful-git-branching-model/


# libtool and libraries
Expand Down
4 changes: 3 additions & 1 deletion libsrc2/volume.c
Original file line number Diff line number Diff line change
Expand Up @@ -1447,7 +1447,9 @@ int miopen_volume(const char *filename, int mode, mihandle_t *volume)
}
/* Get dimension variable attributes for each dimension */
_miget_file_dimension(handle, p1, &handle->dim_handles[i]);
p1 = p2 + 1;
if (p2 != NULL) {
p1 = p2 + 1;
}
}

if( miset_volume_world_indices(handle) < 0 ) {
Expand Down

0 comments on commit 8a13bf6

Please sign in to comment.