]> granicus.if.org Git - libevent/commit
Remove check against passed bufferevent in bufferevent_socket_connect()
authorAzat Khuzhin <a3at.mail@gmail.com>
Mon, 14 Aug 2017 20:11:53 +0000 (23:11 +0300)
committerAzat Khuzhin <a3at.mail@gmail.com>
Mon, 14 Aug 2017 20:16:12 +0000 (23:16 +0300)
commita10a6f4ed918ea1432820d99e9373f37f906d6f0
tree7ba671a7b5207393b3799e457d2924503adc4012
parentb26996a05d9e7aad32e78a7bfab6454d5c11500a
Remove check against passed bufferevent in bufferevent_socket_connect()

It is a bit confusing to check against the result of EVUTIL_UPCAST(),
because it can return not NULL for NULL pointers, but for even though
with bufferevent we are fine (because bufferevent is the first field in
bufferevent_private), there are no checks for "bufev" in bufferevent's
API, so just remove it to make it generic.

Fixes: #542
Signed-off-by: Ivan Maidanski <i.maidanski@samsung.com>
Signed-off-by: Azat Khuzhin <a3at.mail@gmail.com>
bufferevent_sock.c