Package: sdl-net1.2 / 1.2.8-6

Metadata

Package Version Patches format
sdl-net1.2 1.2.8-6 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
arm.patch | (download)

SDL_net.h | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 bad aligned access considerations on arm
 This patch is related with bug report #217221:
   SDLNet_(Read|Write)(16|32) assume host endianness is always LE)
 and the endian.patch
endian.patch | (download)

SDL_net.h | 33 0 + 33 - 0 !
1 file changed, 33 deletions(-)

 sdlnet_(read|write)(16|32) assume host endianness is always le
 This patch is related with bug report #212570 (bad aligned access
 considerations on ARM), and the arm.patch
UDP_Bind.patch | (download)

SDL_net.h | 3 2 + 1 - 0 !
SDLnetUDP.c | 3 2 + 1 - 0 !
2 files changed, 4 insertions(+), 2 deletions(-)

 sdlnet_udp_bind does not behave as described
 Original bug report:
   The comment, which is the same as in the header file, describes one behaviour.
   The code implements another: if channel is -1, it binds to the first channel
   that has not yet been bound to the maximum number of addresses. The if
   (binding->numbound... line should be just if ( binding->numbound) {
   (i.e. choose an unused channel). (Although this may break any apps using the
   incorrect behaviour.)
 .
 Debian changelog:
   * Changed comment for SDLNet_UDP_Bind to reflect implementation
     - Since upstream has not responded to this (and seems dead), and a fair
       number of packages use sdl-net, I don't want to change the behavior
       just for debian, only properly document the actual behavior.
     - (Closes: 211570)