Browse Source

geofence: don't fall over lines containing just a LF

sbg
Ban Siesta 10 years ago
parent
commit
b1f462a266
  1. 8
      src/modules/navigator/geofence.cpp

8
src/modules/navigator/geofence.cpp

@ -279,8 +279,14 @@ Geofence::loadFromFile(const char *filename)
while((textStart < sizeof(line)/sizeof(char)) && isspace(line[textStart])) textStart++; while((textStart < sizeof(line)/sizeof(char)) && isspace(line[textStart])) textStart++;
/* if the line starts with #, skip */ /* if the line starts with #, skip */
if (line[textStart] == commentChar) if (line[textStart] == commentChar) {
continue; continue;
}
/* if there is only a linefeed, skip it */
if (line[0] == '\n') {
continue;
}
if (gotVertical) { if (gotVertical) {
/* Parse the line as a geofence point */ /* Parse the line as a geofence point */

Loading…
Cancel
Save