Fixed some syntax issues.

This commit is contained in:
Ryan C. Gordon 2001-10-09 15:15:24 +00:00
parent f2bb78075f
commit 7ab013b8b7
1 changed files with 2 additions and 2 deletions

View File

@ -195,13 +195,13 @@ static DirHandle *DIR_openArchive(const char *name, int forWriting)
BAIL_IF_MACRO(!DIR_isArchive(name, forWriting), BAIL_IF_MACRO(!DIR_isArchive(name, forWriting),
ERR_UNSUPPORTED_ARCHIVE, NULL); ERR_UNSUPPORTED_ARCHIVE, NULL);
retval = malloc(sizeof (DirHandle)); retval = (DirHandle *) malloc(sizeof (DirHandle));
BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL); BAIL_IF_MACRO(retval == NULL, ERR_OUT_OF_MEMORY, NULL);
retval->opaque = malloc(namelen + seplen + 1); retval->opaque = malloc(namelen + seplen + 1);
if (retval->opaque == NULL) if (retval->opaque == NULL)
{ {
free(retval); free(retval);
BAIL_IF_MACRO(1, ERR_OUT_OF_MEMORY, NULL); BAIL_MACRO(ERR_OUT_OF_MEMORY, NULL);
} /* if */ } /* if */
/* make sure there's a dir separator at the end of the string */ /* make sure there's a dir separator at the end of the string */