mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
Merge pull request #6 in ~VCHOI/my_hdf5_fork from ~BMRIBLER/version_bounds_bmr:bugfix/version_bounds to develop
Fixed daily test failure * commit '2ad0ddaa3e62b35d454dfb61db06d8ad90c2e7a8': Fixed DT failure Description: Added a missing return statement to a non-void function. Platforms tested: Linux/64 (jelly) Linux/32 (jam) Darwin (osx1010test)
This commit is contained in:
commit
e562ffc03f
13
test/ohdr.c
13
test/ohdr.c
@ -745,7 +745,7 @@ char *version_string(H5F_libver_t libver)
|
||||
{
|
||||
char *str = NULL;
|
||||
|
||||
str = (char *) malloc(20 * sizeof(char));
|
||||
str = (char *) HDmalloc(20);
|
||||
if (str == NULL)
|
||||
{
|
||||
fprintf(stderr, "Allocation failed\n");
|
||||
@ -772,6 +772,9 @@ char *version_string(H5F_libver_t libver)
|
||||
sprintf(str, "%ld", (long)libver);
|
||||
break;
|
||||
} /* end switch */
|
||||
|
||||
/* Return the formed version bound string */
|
||||
return(str);
|
||||
} /* end of version_string */
|
||||
|
||||
|
||||
@ -780,12 +783,16 @@ char *version_string(H5F_libver_t libver)
|
||||
*
|
||||
* Purpose: Exercise private object header behavior and routines
|
||||
*
|
||||
* Return: Success: 0
|
||||
* Failure: 1
|
||||
* Return: Success: 0
|
||||
* Failure: 1
|
||||
*
|
||||
* Programmer: Robb Matzke
|
||||
* Tuesday, November 24, 1998
|
||||
*
|
||||
* Modification:
|
||||
* - Added loop of combinations of low/high library format bounds
|
||||
* (BMR, Feb 2018)
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
int
|
||||
|
Loading…
Reference in New Issue
Block a user