Changeset 85

Show
Ignore:
Timestamp:
02/11/08 12:13:14 (10 months ago)
Author:
larsivi
Message:

Fixed my b0rked previous fix, still thanks wuseldusel.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dbi/mysql/MysqlPreparedStatement.d

    r84 r85  
    379379    ~this() 
    380380    { 
    381         mysql_stmt_close(stmt); 
    382         stmt = null; 
     381        if (stmt !is null) { 
     382            mysql_stmt_close(stmt); 
     383            stmt = null; 
     384        } 
    383385    } 
    384386