Changeset 721
- Timestamp:
- 02/25/08 07:55:41 (6 months ago)
- Files:
-
- branches/binary/server/memcached.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/binary/server/memcached.c
r720 r721 3360 3360 int x; 3361 3361 int *l_socket_ptr; 3362 conn *next = listen_conn;3363 3362 for (l_socket_ptr= l_socket, x = 0; x < count; l_socket_ptr++, x++) { 3364 3363 conn *listen_conn_add; … … 3372 3371 3373 3372 if (listen_conn == NULL) { 3374 next =listen_conn = listen_conn_add;3373 listen_conn = listen_conn_add; 3375 3374 } else { 3376 next->next= listen_conn_add; 3375 listen_conn_add->next = listen_conn->next; 3376 listen_conn->next = listen_conn_add; 3377 3377 } 3378 3378 }
