Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F4638565
utils_fuzzer.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
666 B
Referenced Files
None
Subscribers
None
utils_fuzzer.c
View Options
/*
* Copyright 2024 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <crm/common/util.h>
#include <crm/common/util_compat.h>
int
LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
char *ns;
guint result;
if (size < 10) {
return 0;
}
ns = malloc(size+1);
memcpy(ns, data, size);
ns[size] = '\0';
pcmk_parse_interval_spec(ns, &result);
free(ns);
return 0;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Thu, Jul 10, 1:01 AM (11 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2009375
Default Alt Text
utils_fuzzer.c (666 B)
Attached To
Mode
rP Pacemaker
Attached
Detach File
Event Timeline
Log In to Comment