зеркало из https://github.com/github/ruby.git
Fix dangling `else`
This commit is contained in:
Родитель
fba8aff7af
Коммит
d8c6e91748
|
@ -277,8 +277,9 @@ numeric_getaddrinfo(const char *node, const char *service,
|
|||
void
|
||||
rb_freeaddrinfo(struct rb_addrinfo *ai)
|
||||
{
|
||||
if (!ai->allocated_by_malloc)
|
||||
if (!ai->allocated_by_malloc) {
|
||||
if (ai->ai) freeaddrinfo(ai->ai);
|
||||
}
|
||||
else {
|
||||
struct addrinfo *ai1, *ai2;
|
||||
ai1 = ai->ai;
|
||||
|
|
Загрузка…
Ссылка в новой задаче