Changes between Version 2 and Version 3 of Ticket #956


Ignore:
Timestamp:
May 18, 2018, 5:24:57 AM (6 years ago)
Author:
jng
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #956 – Description

    v2 v3  
    22
    33 * General: Errors of the form {{{invalid conversion from ‘wchar_t’ to ‘wchar_t*’}}} in {{{'\0'}}} assignment due to {{{-fpermissive}}}. Fix: Fix up the incorrect assignments.
     4 * General: Various cases of improper null terminator checking {{{error: ISO C++ forbids comparison between pointer and integer [-fpermissive]}}}. Fix: Fix up the incorrect checks.
    45 * MySQL Driver: The {{{<string>}}} header included in {{{stdafx.h}}} now complains about {{{errno}}} due to finding {{{errno.h}}} in the MySQL Driver directory before {{{<cerrno>}}}. Fix: Rather that fight with include path precedence, just rename {{{errno.h}}} to {{{drv_errno.h}}} so {{{<string>}}} will properly resolve errno in {{{<cerrno>}}}
    56 * King Oracle: {{{Providers/KingOracle/src/Provider/c_FdoOra_API3.cpp:104:14: error: cannot convert ‘bool’ to ‘c_MapOraNameToFdoClass::s_data*’ in return}}}. Fix: Return {{{NULL}}} instead of {{{false}}}