소스 검색

Update tok_parse.c

pull/326/head
Richard Barnes 4 달 전
committed by GitHub
부모
커밋
8c23031f10
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      src/mwparserfromhell/parser/ctokenizer/tok_parse.c

+ 4
- 3
src/mwparserfromhell/parser/ctokenizer/tok_parse.c 파일 보기

@@ -1557,10 +1557,11 @@ Tokenizer_handle_tag_close_close(Tokenizer *self)
}
Py_XDECREF(so);
Py_XDECREF(sc);
// One of `so` or `sc` failed to allocate so we clean up the
// closing tag and propagate the error by returning NULL.
Py_DECREF(closing);
return NULL;
}
// One of `so` or `sc` failed to allocate so we fall through to clean up the
// closing tag and propagate the error by returning NULL.
__attribute__((fallthrough));
case -1:
Py_DECREF(closing);
return NULL;


불러오는 중...
취소
저장