2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 22:35:10 +00:00

Make arg_size and arg_len unsigned since we do bitwise operations

on them.
This commit is contained in:
Todd C. Miller
2016-07-16 16:22:40 -06:00
parent 6f5b8cf757
commit 0f816c4401

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 1998-2005, 2007-2015
* Copyright (c) 1996, 1998-2005, 2007-2016
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
@@ -41,8 +41,8 @@
#include "toke.h"
#include <gram.h>
static int arg_len = 0;
static int arg_size = 0;
static unsigned int arg_len = 0;
static unsigned int arg_size = 0;
bool
fill_txt(const char *src, size_t len, size_t olen)
@@ -127,7 +127,7 @@ fill_cmnd(const char *src, size_t len)
bool
fill_args(const char *s, size_t len, int addspace)
{
int new_len;
unsigned int new_len;
char *p;
debug_decl(fill_args, SUDOERS_DEBUG_PARSER)