mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 13:03:52 +00:00
Fixed off-by-one error.
This commit is contained in:
parent
2b876da52d
commit
cd54dc84c4
@ -789,7 +789,7 @@ static void processEvent(XEvent *event)
|
|||||||
{
|
{
|
||||||
// Nautilus seems to add a \r at the end of the paths
|
// Nautilus seems to add a \r at the end of the paths
|
||||||
// remove it so paths can be directly used
|
// remove it so paths can be directly used
|
||||||
_glfw.x11.xdnd.string = malloc(strlen(data));
|
_glfw.x11.xdnd.string = malloc(strlen(data) + 1);
|
||||||
char *to = _glfw.x11.xdnd.string;
|
char *to = _glfw.x11.xdnd.string;
|
||||||
const char *from = data;
|
const char *from = data;
|
||||||
const char *current = strchr(from, '\r');
|
const char *current = strchr(from, '\r');
|
||||||
|
Loading…
Reference in New Issue
Block a user