Skip to content

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusNi committed Nov 12, 2024
1 parent db7a4d1 commit e85c84e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/commonutils/UrlUtils.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

char* UrlEncode(const char* target)
{
size_t targetSize = 0, i = 0, j = 0;
int encodedLength = 0;
size_t targetSize = 0, encodedLength = 0, i = 0, j = 0;
char* encodedTarget = NULL;

if ((NULL == target) || (0 == (targetSize = strlen(target))))
Expand Down

0 comments on commit e85c84e

Please sign in to comment.