Patch #984714: Properly diagnose E_DECODE errors.

Backported to 2.3.
This commit is contained in:
Martin v. Löwis 2004-07-21 05:35:02 +00:00
parent 21429932e4
commit c2632a5c34

View file

@ -1471,6 +1471,9 @@ err_input(perrdetail *err)
break;
}
}
if (msg == NULL)
msg = "unknown decode error";
break;
}
default:
fprintf(stderr, "error=%d\n", err->error);