mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-31 05:14:11 +02:00
fuzzing: Add fuzz tests for functions which parse paths
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
19
fuzzing/fuzz_canonicalize_filename.c
Normal file
19
fuzzing/fuzz_canonicalize_filename.c
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "fuzz.h"
|
||||
|
||||
int
|
||||
LLVMFuzzerTestOneInput (const unsigned char *data, size_t size)
|
||||
{
|
||||
unsigned char *nul_terminated_data = NULL;
|
||||
gchar *canonicalized = NULL;
|
||||
|
||||
fuzz_set_logging_func ();
|
||||
|
||||
/* ignore @size (g_canonicalize_filename() doesn’t support it); ensure @data is nul-terminated */
|
||||
nul_terminated_data = (unsigned char *) g_strndup ((const gchar *) data, size);
|
||||
canonicalized = g_canonicalize_filename ((const gchar *) nul_terminated_data, "/");
|
||||
g_free (nul_terminated_data);
|
||||
|
||||
g_free (canonicalized);
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user