Ignore:
Timestamp:
02/16/2008 06:29:04 PM (18 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
64-bit
revision id:
dsowen@fugue88.ws-20080216182904-v9zd4g515y0vb9qe
Message:

Fix pointer/int cast problem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 64-bit/src/odbc/odbc-functions.lisp

    r15 r16  
    6969       (error-code (cffi:foreign-alloc 'sql-integer))
    7070       (msg-length (cffi:foreign-alloc 'sql-small-int)))
    71     (SQLError henv hdbc hstmt sql-state error-code
     71    (SQLError (or henv (null-pointer)) (or hdbc (null-pointer))
     72              (or hstmt (null-pointer)) sql-state error-code
    7273              error-message $SQL_MAX_MESSAGE_LENGTH msg-length)
    7374    (get-string sql-state 5)          ;(%cstring-to-keyword sql-state)
Note: See TracChangeset for help on using the changeset viewer.