summaryrefslogtreecommitdiffstats
path: root/src/H5Spkg.h
diff options
context:
space:
mode:
authormattjala <124107509+mattjala@users.noreply.github.com>2023-05-16 17:54:55 (GMT)
committerGitHub <noreply@github.com>2023-05-16 17:54:55 (GMT)
commit196078958c0c48f63aa8202e9447f3c75c98c26a (patch)
treea89a00c90eed0ac070afcd4db99586b50c98c545 /src/H5Spkg.h
parentf49a728a08ddc6f9915fd846aed1bc5f28978e64 (diff)
downloadhdf5-196078958c0c48f63aa8202e9447f3c75c98c26a.zip
hdf5-196078958c0c48f63aa8202e9447f3c75c98c26a.tar.gz
hdf5-196078958c0c48f63aa8202e9447f3c75c98c26a.tar.bz2
Prevent buffer overrun in H5S_select_deserialize (#2953)
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r--src/H5Spkg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h
index 1163484..4367a4d 100644
--- a/src/H5Spkg.h
+++ b/src/H5Spkg.h
@@ -242,7 +242,8 @@ typedef hssize_t (*H5S_sel_serial_size_func_t)(H5S_t *space);
/* Method to store current selection in "serialized" form (a byte sequence suitable for storing on disk) */
typedef herr_t (*H5S_sel_serialize_func_t)(H5S_t *space, uint8_t **p);
/* Method to create selection from "serialized" form (a byte sequence suitable for storing on disk) */
-typedef herr_t (*H5S_sel_deserialize_func_t)(H5S_t **space, const uint8_t **p);
+typedef herr_t (*H5S_sel_deserialize_func_t)(H5S_t **space, const uint8_t **p, const size_t p_size,
+ hbool_t skip);
/* Method to determine smallest n-D bounding box containing the current selection */
typedef herr_t (*H5S_sel_bounds_func_t)(const H5S_t *space, hsize_t *start, hsize_t *end);
/* Method to determine linear offset of initial element in selection within dataspace */