mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 13:03:52 +00:00
Cleaned up text/uri-list parsing.
This commit is contained in:
parent
f5c9265d1b
commit
ac8dba2a80
@ -183,6 +183,7 @@ static void changeWindowState(_GLFWwindow* window, Atom state, int action)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Splits and translates a text/uri-list into separate file paths
|
// Splits and translates a text/uri-list into separate file paths
|
||||||
|
// NOTE: This function destroys the provided string
|
||||||
//
|
//
|
||||||
static char** parseUriList(char* text, int* count)
|
static char** parseUriList(char* text, int* count)
|
||||||
{
|
{
|
||||||
@ -196,7 +197,7 @@ static char** parseUriList(char* text, int* count)
|
|||||||
{
|
{
|
||||||
text = NULL;
|
text = NULL;
|
||||||
|
|
||||||
if (*line == '#')
|
if (line[0] == '#')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (strncmp(line, prefix, strlen(prefix)) == 0)
|
if (strncmp(line, prefix, strlen(prefix)) == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user