File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,7 @@ static void s_aws_ticket_wrapper_destroy(void *data) {
436436
437437 /* release completed pending nodes outside of lock to avoid any deadlocks */
438438 while (!aws_linked_list_empty (& pending_reserves_to_remove )) {
439- struct aws_linked_list_node * node = aws_linked_list_front (& pending_reserves_to_remove );
439+ node = aws_linked_list_front (& pending_reserves_to_remove );
440440 struct s3_pending_reserve * pending = AWS_CONTAINER_OF (node , struct s3_pending_reserve , node );
441441 aws_future_s3_buffer_ticket_release (pending -> ticket_future );
442442 aws_linked_list_pop_front (& pending_reserves_to_remove );
@@ -445,7 +445,7 @@ static void s_aws_ticket_wrapper_destroy(void *data) {
445445
446446 /* fill the next pending future */
447447 while (!aws_linked_list_empty (& pending_reserves_to_complete )) {
448- struct aws_linked_list_node * node = aws_linked_list_front (& pending_reserves_to_complete );
448+ node = aws_linked_list_front (& pending_reserves_to_complete );
449449 struct s3_pending_reserve * pending = AWS_CONTAINER_OF (node , struct s3_pending_reserve , node );
450450
451451 struct aws_s3_buffer_ticket * new_ticket_wrapper = s_wrap_default_ticket (pending -> ticket );
You can’t perform that action at this time.
0 commit comments