forked from Archive/PX4-Autopilot
geofence: don't fall over lines containing just a LF
This commit is contained in:
parent
1910b7e88b
commit
b1f462a266
|
@ -279,8 +279,14 @@ Geofence::loadFromFile(const char *filename)
|
|||
while((textStart < sizeof(line)/sizeof(char)) && isspace(line[textStart])) textStart++;
|
||||
|
||||
/* if the line starts with #, skip */
|
||||
if (line[textStart] == commentChar)
|
||||
if (line[textStart] == commentChar) {
|
||||
continue;
|
||||
}
|
||||
|
||||
/* if there is only a linefeed, skip it */
|
||||
if (line[0] == '\n') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (gotVertical) {
|
||||
/* Parse the line as a geofence point */
|
||||
|
|
Loading…
Reference in New Issue