diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-27 02:12:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-27 02:12:02 (GMT) |
commit | c274ffe1c9bdfa256459213cab1ece7f566b9620 (patch) | |
tree | a08fa12cc07b4b8f8471bbcfd8d94e34a82d03c5 /src/H5Ztrans.c | |
parent | a75d43be95aa7009b5a20306eedb08c0a734a18e (diff) | |
download | hdf5-c274ffe1c9bdfa256459213cab1ece7f566b9620.zip hdf5-c274ffe1c9bdfa256459213cab1ece7f566b9620.tar.gz hdf5-c274ffe1c9bdfa256459213cab1ece7f566b9620.tar.bz2 |
[svn-r9466] Purpose:
Bug fix
Description:
Clean up potential buffer overflow in strncpy()
Platforms tested:
FreeBSD 4.10 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Ztrans.c')
-rw-r--r-- | src/H5Ztrans.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/H5Ztrans.c b/src/H5Ztrans.c index 437d79e..d14af45 100644 --- a/src/H5Ztrans.c +++ b/src/H5Ztrans.c @@ -1594,7 +1594,6 @@ H5Z_xform_extract_xform_str(const H5Z_data_xform_t *data_xform_prop) /* There should be no way that these can be NULL since the function * that calls this one checks to make sure they aren't before * pasing them */ - assert(exp); assert(data_xform_prop); ret_value = data_xform_prop->xform_exp; |