Bug 227816

Summary: REGRESSION(r277571) null dereference in SQLiteStatement::~SQLiteStatement
Product: WebKit Reporter: Alex Christensen <achristensen>
Component: New BugsAssignee: Alex Christensen <achristensen>
Status: RESOLVED WONTFIX    
Severity: Normal CC: cdumez
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch cdumez: review-

Description Alex Christensen 2021-07-08 14:37:43 PDT
REGRESSION(r277571) null dereference in SQLiteStatement::~SQLiteStatement
Comment 1 Alex Christensen 2021-07-08 14:40:19 PDT
Created attachment 433165 [details]
Patch
Comment 2 Chris Dumez 2021-07-08 14:40:59 PDT
Comment on attachment 433165 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=433165&action=review

> Source/WebCore/platform/sql/SQLiteStatement.cpp:62
> +        sqlite3_finalize(m_statement);

https://www.sqlite.org/c3ref/finalize.html:
"Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op."