Message ID | 20220614114914.30497-1-wangyouwan@uniontech.com |
---|---|
State | Superseded |
Headers | show |
Series | obexd: Fix transfer has been free during transfer_abort_response func | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=650185 ---Test result--- Test Summary: CheckPatch FAIL 1.06 seconds GitLint FAIL 0.77 seconds Prep - Setup ELL PASS 43.82 seconds Build - Prep PASS 0.58 seconds Build - Configure PASS 8.55 seconds Build - Make PASS 1426.59 seconds Make Check PASS 12.09 seconds Make Check w/Valgrind PASS 440.91 seconds Make Distcheck PASS 233.61 seconds Build w/ext ELL - Configure PASS 8.59 seconds Build w/ext ELL - Make PASS 1391.37 seconds Incremental Build with patchesPASS 0.00 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script with rule in .checkpatch.conf Output: obexd: Fix transfer has been free during transfer_abort_response func WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #64: Breakpoint 3, transfer_complete (transfer=0x5555555f5f40, err=0x5555555f6d60) WARNING:LONG_LINE: line length of 82 exceeds 80 columns #158: FILE: gobex/gobex-transfer.c:96: + transfer->complete_func(transfer->obex, err, transfer->user_data); /github/workspace/src/12880945.patch total: 0 errors, 2 warnings, 10 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/12880945.patch has style problems, please review. NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: GitLint - FAIL Desc: Run gitlint with rule in .gitlint Output: obexd: Fix transfer has been free during transfer_abort_response func 35: B1 Line exceeds max length (82>80): "Breakpoint 5, transfer_free (transfer=0x5555555f5f40) at gobex/gobex-transfer.c:61" 44: B1 Line exceeds max length (88>80): "Breakpoint 2, transfer_abort_response (obex=0x5555555f5b50, err=0x0, rsp=0x5555555f0810," 54: B1 Line exceeds max length (106>80): "Breakpoint 3, transfer_complete (transfer=0x5555555f5f40, err=0x5555555f6f00) at gobex/gobex-transfer.c:99" 59: B1 Line exceeds max length (95>80): "Breakpoint 4, xfer_complete (obex=0x5555555f5b50, err=0x5555555f6f00, user_data=0x5555555f7000)" --- Regards, Linux Bluetooth
diff --git a/gobex/gobex-transfer.c b/gobex/gobex-transfer.c index c94d018b2..48b1f6962 100644 --- a/gobex/gobex-transfer.c +++ b/gobex/gobex-transfer.c @@ -92,7 +92,9 @@ static void transfer_complete(struct transfer *transfer, GError *err) g_obex_drop_tx_queue(transfer->obex); } - transfer->complete_func(transfer->obex, err, transfer->user_data); + if (find_transfer(id) != NULL) + transfer->complete_func(transfer->obex, err, transfer->user_data); + /* Check if the complete_func removed the transfer */ if (find_transfer(id) == NULL) return;