Giter Club home page Giter Club logo

Comments (2)

albin-johansson avatar albin-johansson commented on June 15, 2024

The following is taken from the SDL wiki page for SDL_GetError. As you say, the error strings are thread-local, but they are not dynamically allocated, i.e. no need to free anything.

Error strings are set per-thread, so an error set in a different thread will not interfere with the current thread's operation. The returned string is internally allocated and must not be freed by the application.

It is a small change to make exception objects store proper strings, so this should not be a problem. This would open up for the possibility of OOM exceptions being thrown in the constructors of our exceptions, due to the extra string allocation. But this is not something that the library even attempts to guard against anyway.

from centurion.

v1993 avatar v1993 commented on June 15, 2024

As you say, the error strings are thread-local, but they are not dynamically allocated, i.e. no need to free anything.

Although documentation you've quoted does not say that it not dynamically allocated, merely that it must not be freed by user (double-free is a fatal error, after all), looking further into it reveals that they are using thread-local storage to store errors. Makes sense.

This would open up for the possibility of OOM exceptions being thrown in the constructors of our exceptions, due to the extra string allocation.

I mean, doesn't allocating exception alone carry the possibility of OOM error anyways? I guess we can embed fixed-sized buffer (SDL internally uses 128-byte one) into exception object if we want to be extra safe.

from centurion.

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.