GithubHelp home page GithubHelp logo

Comments (9)

rzl avatar rzl commented on May 19, 2024

i try to add dTHX to free_embedded_options function , gmake success

int free_embedded_options(char ** options_list, int options_count)
{
  int i;
  dTHX;
  for (i= 0; i < options_count; i++)
  {
    if (options_list[i])
      free(options_list[i]);
  }
  free(options_list);

  return 1;
}

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

This is incorrect. Memory which is going to be freed by free() call in free_embedded_options is allocated in fill_out_embedded_options by calloc() call.

Perl headers file replaces malloc() and free() calls by own memory management. But does not replaces calloc() call.

On some systems those functions just calls system's malloc() and free() functions, therefore everything is safe. (Seems that all Linux machines which I tested). But error which you got on Windows indicates that it really has own memory management (needs that dTHX;) and calling Perl's free() on memory allocated by Windows native calloc() would for sure cause memory corruptions...

Correct way is to stop using calloc() and free() and uses Perl's Newz() and Safefree() replacment.

from dbd-mariadb.

rzl avatar rzl commented on May 19, 2024

though I don't know what you are talking about, replace free to Safefree , gmake success.
thank you .

int free_embedded_options(char ** options_list, int options_count)
{
  int i;

  for (i= 0; i < options_count; i++)
  {
    if (options_list[i])
      Safefree(options_list[i]);
  }
  Safefree(options_list);

  return 1;
}

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

though I don't know what you are talking about

That for allocation of memory calloc must be avoided and instead Newz should be used. And for releasing memory allocated by Newz should be used Safefree call.

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

Will you prepare a proper fix for it?

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

Patch for guarding calloc for perl itself is in following RT ticket: https://rt.perl.org/Public/Bug/Display.html?id=133550

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

Ok, I did in in pull request #94. Please check.

from dbd-mariadb.

rzl avatar rzl commented on May 19, 2024

Ok, I did in in pull request #94. Please check.

git clone https://github.com/pali/DBD-MariaDB.git
perl Makefile.PL --mysql_config=c:/path/mysql_config.bat
gmake
gmake install

success

from dbd-mariadb.

pali avatar pali commented on May 19, 2024

Ok, therefore it is fixed, closing.

from dbd-mariadb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.