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:
Binh-Minh Ribler 2018-02-14 09:54:43 -06:00
commit e562ffc03f

View File

@ -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 */
@ -786,6 +789,10 @@ char *version_string(H5F_libver_t libver)
* Programmer: Robb Matzke
* Tuesday, November 24, 1998
*
* Modification:
* - Added loop of combinations of low/high library format bounds
* (BMR, Feb 2018)
*
*-------------------------------------------------------------------------
*/
int