]> git.pld-linux.org Git - packages/Firebird.git/blob - Firebird-va.patch
- fix
[packages/Firebird.git] / Firebird-va.patch
1 --- firebird-1.5.0.4290/src/jrd/gds.cpp.orig    2004-02-06 05:56:28.000000000 +0100
2 +++ firebird-1.5.0.4290/src/jrd/gds.cpp 2004-05-29 15:22:12.000000000 +0200
3 @@ -2717,7 +2717,10 @@
4         va_list args;
5  
6         VA_START(args, string);
7 -       blr_format(control, string, args);
8 +       /* blr_format(control, string, ...); */
9 +       vsprintf(control->ctl_ptr, string, args);
10 +       while (*control->ctl_ptr)
11 +               control->ctl_ptr++;
12         offset = 0;
13         PRINT_LINE;
14         Firebird::status_exception::raise(-1);
This page took 0.052601 seconds and 3 git commands to generate.