| 123 | #endif |
| 124 | |
| 125 | static ENGINE * |
| 126 | engine_async(void) |
| 127 | { |
| 128 | ENGINE *ret = ENGINE_new(); |
| 129 | if (!ret) |
| 130 | return NULL; |
| 131 | if (!bind_async(ret)) { |
| 132 | ENGINE_free(ret); |
| 133 | return NULL; |
| 134 | } |
| 135 | return ret; |
| 136 | } |
| 137 | |
| 138 | void |
| 139 | engine_load_async_int(void) |
no test coverage detected