Browse Source

MT#56750 fix typo

Fixes list corruption.

Fixes #1641
Closes #1642

Change-Id: Ia0470d0c10fc8d1315c7475b2a24ccc96cd9b96a
pull/1657/head
Richard Fuchs 3 years ago
parent
commit
07bf12d08f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      daemon/media_socket.c

+ 1
- 1
daemon/media_socket.c View File

@ -863,7 +863,7 @@ void interfaces_exclude_port(unsigned int port) {
mutex_lock(&pp->free_list_lock); mutex_lock(&pp->free_list_lock);
ll = g_hash_table_lookup(free_ports_ht, GUINT_TO_POINTER(port)); ll = g_hash_table_lookup(free_ports_ht, GUINT_TO_POINTER(port));
if (ll) if (ll)
reserve_port(free_ports_q, free_ports_ht, l, port);
reserve_port(free_ports_q, free_ports_ht, ll, port);
mutex_unlock(&pp->free_list_lock); mutex_unlock(&pp->free_list_lock);
} }


Loading…
Cancel
Save