Diff for /sql/sqlite/parser3sqlite.C between versions 1.19 and 1.20

version 1.19, 2021/02/01 19:27:32 version 1.20, 2021/11/08 09:03:09
Line 509  private: Line 509  private:
   
 private: // sqlite client library funcs linking  private: // sqlite client library funcs linking
   
         const char *dlink(const char *dlopen_file_spec) {          const char *dlink(char *dlopen_file_spec) {
                 if(lt_dlinit()){                  if(lt_dlinit()){
                         if(const char* result=lt_dlerror())                          if(const char* result=lt_dlerror())
                                 return result;                                  return result;
                         return "can not prepare to dynamic loading";                          return "can not prepare to dynamic loading";
                 }                  }
   
                 lt_dlhandle handle=lt_dlopen(dlopen_file_spec);                  lt_dlhandle handle;
                   do {
                           char *next=lsplit(dlopen_file_spec, ',');
                           handle=lt_dlopen(dlopen_file_spec);
                           dlopen_file_spec=next;
                   } while (!handle && dlopen_file_spec);
   
                 if(!handle){                  if(!handle){
                         if(const char* result=lt_dlerror())                          if(const char* result=lt_dlerror())

Removed from v.1.19  
changed lines
  Added in v.1.20


E-mail: