mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 09:37:36 +08:00
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:
+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