aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/client_channel/uri_fuzzer_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/client_channel/uri_fuzzer_test.c')
-rw-r--r--test/core/client_channel/uri_fuzzer_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/client_channel/uri_fuzzer_test.c b/test/core/client_channel/uri_fuzzer_test.c
index e51d0031ec..b4de092438 100644
--- a/test/core/client_channel/uri_fuzzer_test.c
+++ b/test/core/client_channel/uri_fuzzer_test.c
@@ -28,13 +28,13 @@
bool squelch = true;
bool leak_check = true;
-int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
- char *s = gpr_malloc(size + 1);
+int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
+ char* s = gpr_malloc(size + 1);
memcpy(s, data, size);
s[size] = 0;
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
- grpc_uri *x;
+ grpc_uri* x;
if ((x = grpc_uri_parse(&exec_ctx, s, 1))) {
grpc_uri_destroy(x);
}