[READ-ONLY] Mirror of https://github.com/VibeDevelopers/Comet.
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix null dereference in LIST

Introduced in 66a8049e700c5c55ddd32cf211c1ceef06992ff3

authored by

Valentin Lorentz and committed by
Aaron Jones
(May 24, 2026, 10:49 AM UTC) eb62eb9c dfe6757a

+2 -1
+2 -1
modules/m_list.c
··· 347 347 348 348 /* mark it as a "remote" response that cannot expire so we don't terminate the batch at the end of the command handler */ 349 349 begin_remote_response_batch(1, ""); 350 - outgoing_response_info->expires = 0; 350 + if (outgoing_response_info != NULL) 351 + outgoing_response_info->expires = 0; 351 352 params->response_info = outgoing_response_info; 352 353 353 354 safelist_client_instantiate(source_p, params);