Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.1.5
-
None
Description
In cursor method nextset() the status of the statement handle will not be checked - if a cursor was not executed before (self->stmt = NULL) it will crash.
How to repeat:
import mariadb |
conn= mariadb.connect() |
cursor= conn.cursor() |
cursor.nextset()
|