• Show log

    Commit

  • Hash : 24df68ea
    Author : Sam Lantinga
    Date : 2016-10-07T16:32:58

    Fixed bug 2833 - Access Violation on SDL_PollEvent after init, delay and quit of joystick subsystem
    
    Jan Klass
    
    Not sure if this is limited to the joystick subsystem,
    but I created a minimal program for reproducibility,
    which is attached.
    
    The issue occurs with my gamepad Razer Onza (an xbox-style gamepad) plugged in.
    On initialization, the gamepad is being recognized.
    After quitting the subsystem, the poll will receive the joystick added event,
    which it instantly handles itself, calling SDL_SYS_JoystickDetect again,
    which this time calls IDirectInput8_EnumDevices with dinput = NULL (after it was released on quit).
    This seems to lead to an access violation within said function, which I have no source for.
    

  • Properties

  • Git HTTP https://git.kmx.io/kc3-lang/SDL.git
    Git SSH git@git.kmx.io:kc3-lang/SDL.git
    Public access ? public
    Description

    Fork of https://github.com/libsdl-org/SDL

    Users
    thodg_m kc3_lang_org thodg_w thodg_l www_kmx_io thodg
    Tags

  • README.txt

  •                          Simple DirectMedia Layer
    
                                      (SDL)
    
                                    Version 2.0
    
    ---
    http://www.libsdl.org/
    
    Simple DirectMedia Layer is a cross-platform development library designed
    to provide low level access to audio, keyboard, mouse, joystick, and graphics
    hardware via OpenGL and Direct3D. It is used by video playback software,
    emulators, and popular games including Valve's award winning catalog
    and many Humble Bundle games.
    
    More extensive documentation is available in the docs directory, starting
    with README.md
    
    Enjoy!
    	Sam Lantinga				(slouken@libsdl.org)