Comprehensive fix: security, bugs, refactoring, tests, and rsync parity features #173

Merged
TapTap merged 16 commits from integration/all-fixes into main 2026-07-30 18:13:15 +02:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 8cc587b79e - Show all commits
+2 -1
View File
@@ -126,7 +126,8 @@ void handler(int file_descriptor) {
close(file_descriptor);
return;
}
PipelineContextReceiver* context = pipeline_context_receiver_create(config, q, file_descriptor, ssl);
PipelineContextReceiver* context =
pipeline_context_receiver_create(config, q, file_descriptor, ssl);
if (context == NULL) {
queue_destroy(q);
config_delete(config);
-1
View File
@@ -116,7 +116,6 @@ static void test_receiver_fd_zero() {
pipeline_context_receiver_destroy(ctx);
}
/* Test that receive_thread completes cleanly when sent FINISHED immediately */
static void test_receive_thread_finished() {
Config* cfg = config_create();