fix comments

pull/797/head
Brad House 9 months ago
parent 7efb5019a2
commit 54808a5190
  1. 6
      test/ares-test-fuzz-name.c

@ -28,15 +28,15 @@
#include <string.h>
#include "ares.h"
// Include ares internal file for DNS protocol constants
/* Include ares internal file for DNS protocol constants */
#include "ares_nameser.h"
int LLVMFuzzerTestOneInput(const unsigned char *data, unsigned long size);
// Entrypoint for Clang's libfuzzer, exercising query creation.
/* Entrypoint for Clang's libfuzzer, exercising query creation. */
int LLVMFuzzerTestOneInput(const unsigned char *data, unsigned long size)
{
// Null terminate the data.
/* Null terminate the data. */
char *name = malloc(size + 1);
unsigned char *buf = NULL;
int buflen = 0;

Loading…
Cancel
Save