mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 08:36:24 +08:00
Ooops.. mksymtab needs to check for zero-length header file names
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5076 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+10
-7
@@ -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++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user