| 4092 | #undef gds__alloc |
| 4093 | |
| 4094 | VoidPtr API_ROUTINE gds__alloc(SLONG size_request) |
| 4095 | { |
| 4096 | try |
| 4097 | { |
| 4098 | return getDefaultMemoryPool()->allocate(size_request ALLOC_ARGS); |
| 4099 | } |
| 4100 | catch (const Firebird::Exception&) |
| 4101 | { |
| 4102 | return NULL; |
| 4103 | } |
| 4104 | } |
| 4105 | |
| 4106 | class InitPrefix |
| 4107 | { |
nothing calls this directly
no test coverage detected