Browse Source

Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix firebird bug #60947 , tested and now it prints the header page information from database
pull/267/head
Popa Adrian Marius 14 years ago
parent
commit
5d8a0fd7ec
  1. 4
      ext/interbase/ibase_service.c

4
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:

Loading…
Cancel
Save