From: Popa Adrian Marius Date: Thu, 29 Mar 2012 15:28:01 +0000 (+0300) Subject: Fix firebird bug #60947 , tested and now it prints the header page information from... X-Git-Tag: php-5.3.14RC1~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97f4fc22c576fcf8beeb3ee4474c00d074ba4bee;p=php Fix firebird bug #60947 , tested and now it prints the header page information from database --- diff --git a/ext/interbase/ibase_service.c b/ext/interbase/ibase_service.c index 6faaa564d5..1846b7416f 100644 --- a/ext/interbase/ibase_service.c +++ b/ext/interbase/ibase_service.c @@ -322,8 +322,8 @@ query_loop: } result += 2; *(result+line_len) = 0; - snprintf(heap_p, heap_buf_size - (heap_buf - heap_p), "%s\n", result); - heap_p += line_len +2; + snprintf(heap_p, heap_buf_size - (heap_p - heap_buf), "%s\n", result); + heap_p += line_len +1; goto query_loop; /* repeat until result is exhausted */ case isc_info_svc_server_version: