Custom Query (2195 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (79 - 81 of 2195)

Ticket Resolution Summary Owner Reporter
#106 fixed Write outside buffer in PJLIB's win32 error string bennylp bennylp
Description

The PJLIB's Win32 version of platform_strerror() may write data outside the buffer (on buffer[-1] location to be precise) when the function is unable to retrieve the error string using FormatMessage function.

This is caused by the function naively assumes that snprintf will never return negative value:

 len = pj_ansi_snprintf(buffer, bufsize, ...);
 buffer[len] = '\0';
#107 fixed Fixed deadlock in ioqueue unregistration with IOCP bennylp bennylp
Description

When IOCP is used as ioqueue backend, the unregistration will cause deadlock if the unregistration is called on the callback.

This can be reproduced with ioqueue unregister test in pjlib-test.

#108 fixed QA for release 0.5.10 bennylp bennylp
Note: See TracQuery for help on using queries.