strTest,
strDesc,
curField; // accumulator
- for ( bool cont = TRUE; cont; pc++ ) {
+ bool cont = TRUE;
+ while ( cont ) {
switch ( *pc ) {
case wxT('\\'):
// interpret the next character literally (notice that
// backslash can be used for line continuation)
if ( *++pc == wxT('\0') ) {
- // fetch the next line.
-
- // pc currently points to nowhere, but after the next
- // pc++ in the for line it will point to the beginning
- // of the next line in the file
- pc = file[++nLine].c_str() - 1;
+ // fetch the next line if there is one
+ if ( nLine == nLineCount - 1 ) {
+ // something is wrong, bail out
+ cont = FALSE;
+
+ wxLogDebug(wxT("Mailcap file %s, line %d: "
+ "'\\' on the end of the last line "
+ "ignored."),
+ strFileName.c_str(),
+ nLine + 1);
+ }
+ else {
+ // pass to the beginning of the next line
+ pc = file[++nLine].c_str();
+
+ // skip pc++ at the end of the loop
+ continue;
+ }
}
else {
// just a normal character
switch ( currentToken ) {
case Field_Type:
strType = curField;
+ if ( strType.empty() ) {
+ // I don't think that this is a valid mailcap
+ // entry, but try to interpret it somehow
+ strType = _T('*');
+ }
+
if ( strType.Find(wxT('/')) == wxNOT_FOUND ) {
// we interpret "type" as "type/*"
strType += wxT("/*");
break;
case Field_Other:
- {
+ if ( !curField.empty() ) {
// "good" mailcap entry?
bool ok = TRUE;
}
}
}
+ //else: the field is empty, ignore silently
// it already has this value
//currentToken = Field_Other;
default:
curField += *pc;
}
+
+ // continue in the same line
+ pc++;
}
// check that we really read something reasonable