Commit c2632a5c authored by Martin v. Löwis's avatar Martin v. Löwis

Patch #984714: Properly diagnose E_DECODE errors.

Backported to 2.3.
parent 21429932
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment