9
0
Fork 0

Ooops.. mksymtab needs to check for zero-length header file names

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5076 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2012-09-01 15:46:49 +00:00
parent 7e3e4b4c57
commit 45925c04c8
1 changed files with 10 additions and 7 deletions

View File

@ -94,16 +94,19 @@ static bool check_hdrfile(const char *hdrfile)
static void add_hdrfile(const char *hdrfile)
{
if (!check_hdrfile(hdrfile))
if (hdrfile && strlen(hdrfile) > 0)
{
if (nhdrfiles > MAX_HEADER_FILES)
if (!check_hdrfile(hdrfile))
{
fprintf(stderr, "ERROR: Too man header files. Increase MAX_HEADER_FILES\n");
exit(EXIT_FAILURE);
}
if (nhdrfiles > MAX_HEADER_FILES)
{
fprintf(stderr, "ERROR: Too man header files. Increase MAX_HEADER_FILES\n");
exit(EXIT_FAILURE);
}
g_hdrfiles[nhdrfiles] = strdup(hdrfile);
nhdrfiles++;
g_hdrfiles[nhdrfiles] = strdup(hdrfile);
nhdrfiles++;
}
}
}