~ubuntu-branches/debian/sid/unixodbc/sid

« back to all changes in this revision

Viewing changes to cur/SQLBindCol.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2004-10-15 03:07:52 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20041015030752-dzw4vhxlgycz3woj
Tags: 2.2.4-11
Brown paper bag me: conflicts do not write themselves just because
you add a line to the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 *
24
24
 **********************************************************************
25
25
 *
26
 
 * $Id: SQLBindCol.c,v 1.2 2001/12/13 13:00:33 lurcher Exp $
 
26
 * $Id: SQLBindCol.c,v 1.3 2002/11/19 18:52:28 lurcher Exp $
27
27
 *
28
28
 * $Log: SQLBindCol.c,v $
 
29
 * Revision 1.3  2002/11/19 18:52:28  lurcher
 
30
 *
 
31
 * Alter the cursor lib to not require linking to the driver manager.
 
32
 *
29
33
 * Revision 1.2  2001/12/13 13:00:33  lurcher
30
34
 *
31
35
 * Remove most if not all warnings on 64 bit platforms
188
192
        bcol = malloc( sizeof( CLBCOL ));
189
193
        if ( !bcol )
190
194
        {
191
 
            __post_internal_error( &cl_statement -> dm_statement -> error,
 
195
            cl_statement -> cl_connection -> dh.__post_internal_error( &cl_statement -> dm_statement -> error,
192
196
                    ERROR_HY001, NULL,
193
197
                    cl_statement -> dm_statement -> connection -> 
194
198
                        environment -> requested_version );
255
259
        bcol -> local_buffer = malloc( b_len );
256
260
        if ( !bcol -> local_buffer )
257
261
        {
258
 
            __post_internal_error( &cl_statement -> dm_statement -> error,
 
262
            cl_statement -> cl_connection -> dh.__post_internal_error( &cl_statement -> dm_statement -> error,
259
263
                    ERROR_HY001, NULL,
260
264
                    cl_statement -> dm_statement -> connection -> 
261
265
                        environment -> requested_version );