Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GLib
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
936
Issues
936
List
Boards
Labels
Service Desk
Milestones
Merge Requests
59
Merge Requests
59
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
GLib
Commits
f77c75a1
Commit
f77c75a1
authored
Jun 30, 2020
by
Philip Withnall
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ossfuzz-fix-again' into 'master'
fuzzing: Another fix for g_uri_parse() test See merge request
!1556
parents
f1a9599b
39f8aff8
Pipeline
#192449
passed with stages
in 28 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
12 deletions
+20
-12
fuzzing/fuzz_uri_parse.c
fuzzing/fuzz_uri_parse.c
+20
-12
No files found.
fuzzing/fuzz_uri_parse.c
View file @
f77c75a1
#include "fuzz.h"
int
LLVMFuzzerTestOneInput
(
const
unsigned
char
*
data
,
size_t
size
)
static
void
test_with_flags
(
const
gchar
*
data
,
GUriFlags
flags
)
{
unsigned
char
*
nul_terminated_data
=
NULL
;
GUri
*
uri
=
NULL
;
gchar
*
uri_string
=
NULL
;
const
GUriFlags
flags
=
G_URI_FLAGS_NONE
;
fuzz_set_logging_func
();
/* ignore @size (g_uri_parse() doesn’t support it); ensure @data is nul-terminated */
nul_terminated_data
=
(
unsigned
char
*
)
g_strndup
((
const
gchar
*
)
data
,
size
);
uri
=
g_uri_parse
((
const
gchar
*
)
data
,
flags
,
NULL
);
g_free
(
nul_terminated_data
);
uri
=
g_uri_parse
(
data
,
flags
,
NULL
);
if
(
uri
==
NULL
)
return
0
;
return
;
uri_string
=
g_uri_to_string
(
uri
);
g_uri_unref
(
uri
);
if
(
uri_string
==
NULL
)
return
0
;
return
;
g_free
(
uri_string
);
}
int
LLVMFuzzerTestOneInput
(
const
unsigned
char
*
data
,
size_t
size
)
{
unsigned
char
*
nul_terminated_data
=
NULL
;
fuzz_set_logging_func
();
/* ignore @size (g_uri_parse() doesn’t support it); ensure @data is nul-terminated */
nul_terminated_data
=
(
unsigned
char
*
)
g_strndup
((
const
gchar
*
)
data
,
size
);
test_with_flags
((
const
gchar
*
)
nul_terminated_data
,
G_URI_FLAGS_NONE
);
test_with_flags
((
const
gchar
*
)
nul_terminated_data
,
G_URI_FLAGS_PARSE_STRICT
);
g_free
(
nul_terminated_data
);
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment