Skip to content

Commit

Permalink
Fix appsec lint
Browse files Browse the repository at this point in the history
  • Loading branch information
estringana committed Jan 7, 2025
1 parent 906cbc5 commit ff416ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appsec/src/extension/network.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ dd_result dd_conn_sendv(dd_conn *nonnull conn, zend_llist *nonnull iovecs)
mlog_err(dd_log_info, "Error writing %zu bytes to helper", total);
efree(iovs);
return dd_network;
} else if (written == 0) {
} else if (written == 0) { // NOLINT(readability-else-after-return)
mlog(dd_log_info, "writev() call returned zero");
efree(iovs);
return dd_network;
Expand Down

0 comments on commit ff416ee

Please sign in to comment.