8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 02:03:04 +01:00

Patch by Vitaly Bodzhgua. The code ignored exceptions thrown from ProcessFile().

This commit is contained in:
dimitr 2006-07-25 10:46:44 +00:00
parent f3ea350fa5
commit 2161617fba

View File

@ -60,7 +60,7 @@ int main()
try {
ProcessFile(stdin, false);
}
catch (char* x)
catch (const char* x)
{
fprintf(stderr, "%s\n", x);
return 1;