Skip to content

Commit

Permalink
samba: pass down size_t instead of int to add_string_to_array().
Browse files Browse the repository at this point in the history
Guenther

Signed-off-by: Günther Deschner <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>

Autobuild-User(master): Günther Deschner <[email protected]>
Autobuild-Date(master): Mon Nov 17 19:53:22 CET 2014 on sn-devel-104
  • Loading branch information
gd committed Nov 17, 2014
1 parent ee8ddb8 commit a62cc2c
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion libcli/ldap/ldap_message.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct ldap_SearchRequest {
uint32_t sizelimit;
bool attributesonly;
struct ldb_parse_tree *tree;
int num_attributes;
size_t num_attributes;
const char * const *attributes;
};

Expand Down
2 changes: 1 addition & 1 deletion libgpo/gpext/gpext.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ static NTSTATUS gp_glob_ext_list(TALLOC_CTX *mem_ctx,
name[PTR_DIFF(p, dirent->d_name)] = 0;

if (!add_string_to_array(mem_ctx, name, ext_list,
(int *)ext_list_len)) {
ext_list_len)) {
closedir(dir);
return NT_STATUS_NO_MEMORY;
}
Expand Down
2 changes: 1 addition & 1 deletion source3/lib/eventlog/eventlog.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ bool parse_logentry( TALLOC_CTX *mem_ctx, char *line, struct eventlog_Record_tdb
}
} else if ( 0 == strncmp( start, "STR", stop - start ) ) {
size_t tmp_len;
int num_of_strings;
size_t num_of_strings;
/* skip past initial ":" */
stop++;
/* now skip any other leading whitespace */
Expand Down
2 changes: 1 addition & 1 deletion source3/libads/ldap.c
Original file line number Diff line number Diff line change
Expand Up @@ -3288,7 +3288,7 @@ ADS_STATUS ads_get_joinable_ous(ADS_STRUCT *ads,

if (!add_string_to_array(mem_ctx, dn,
(const char ***)ous,
(int *)num_ous)) {
num_ous)) {
TALLOC_FREE(dn);
ads_msgfree(ads, res);
return ADS_ERROR(LDAP_NO_MEMORY);
Expand Down
4 changes: 2 additions & 2 deletions source3/libnet/libnet_join.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ static ADS_STATUS libnet_join_set_machine_spn(TALLOC_CTX *mem_ctx,
ok = ads_element_in_array(spn_array, num_spns, spn);
if (!ok) {
ok = add_string_to_array(spn_array, spn,
&spn_array, (int *)&num_spns);
&spn_array, &num_spns);
if (!ok) {
return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
}
Expand All @@ -448,7 +448,7 @@ static ADS_STATUS libnet_join_set_machine_spn(TALLOC_CTX *mem_ctx,
ok = ads_element_in_array(spn_array, num_spns, spn);
if (!ok) {
ok = add_string_to_array(spn_array, spn,
&spn_array, (int *)&num_spns);
&spn_array, &num_spns);
if (!ok) {
return ADS_ERROR_LDAP(LDAP_NO_MEMORY);
}
Expand Down
2 changes: 1 addition & 1 deletion source3/rpc_server/lsa/srv_lsa_nt.c
Original file line number Diff line number Diff line change
Expand Up @@ -3335,7 +3335,7 @@ static NTSTATUS init_lsa_right_set(TALLOC_CTX *mem_ctx,
uint32 i;
const char *privname;
const char **privname_array = NULL;
int num_priv = 0;
size_t num_priv = 0;

for (i=0; i<privileges->count; i++) {
if (privileges->set[i].luid.high) {
Expand Down
2 changes: 1 addition & 1 deletion source3/rpc_server/netlogon/srv_netlog_nt.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ NTSTATUS _netr_NetrEnumerateTrustedDomains(struct pipes_struct *p,
NTSTATUS status;
NTSTATUS result = NT_STATUS_OK;
DATA_BLOB blob;
int num_domains = 0;
size_t num_domains = 0;
const char **trusted_domains = NULL;
struct lsa_DomainList domain_list;
struct dcerpc_binding_handle *h = NULL;
Expand Down
3 changes: 2 additions & 1 deletion source3/rpc_server/spoolss/srv_spoolss_nt.c
Original file line number Diff line number Diff line change
Expand Up @@ -4902,7 +4902,8 @@ static WERROR string_array_from_driver_info(TALLOC_CTX *mem_ctx,
const char *arch,
int version)
{
int i, num_strings = 0;
int i;
size_t num_strings = 0;
const char **array = NULL;

if (string_array == NULL) {
Expand Down
5 changes: 3 additions & 2 deletions source3/rpcclient/cmd_spoolss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ static bool init_drv_info_3_members(TALLOC_CTX *mem_ctx, struct spoolss_AddDrive
char *args)
{
char *str, *str2;
int count = 0;
size_t count = 0;
char *saveptr = NULL;
struct spoolss_StringArray *deps;
const char **file_array = NULL;
Expand Down Expand Up @@ -2636,7 +2636,8 @@ static WERROR cmd_spoolss_setprinterdata(struct rpc_pipe_client *cli,
data.binary = strhex_to_data_blob(mem_ctx, argv[4]);
break;
case REG_MULTI_SZ: {
int i, num_strings;
int i;
size_t num_strings;
const char **strings = NULL;

num_strings = 0;
Expand Down
2 changes: 1 addition & 1 deletion source3/winbindd/winbindd_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1631,7 +1631,7 @@ static bool find_new_dc(TALLOC_CTX *mem_ctx,
int num_dcs = 0;

const char **dcnames = NULL;
int num_dcnames = 0;
size_t num_dcnames = 0;

struct sockaddr_storage *addrs = NULL;
int num_addrs = 0;
Expand Down
4 changes: 2 additions & 2 deletions source4/torture/rpc/samba3rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2634,7 +2634,7 @@ static bool rap_get_servername(struct torture_context *tctx,
static bool find_printers(struct torture_context *tctx,
struct dcerpc_pipe *p,
const char ***printers,
int *num_printers)
size_t *num_printers)
{
struct srvsvc_NetShareEnum r;
struct srvsvc_NetShareInfoCtr info_ctr;
Expand Down Expand Up @@ -2771,7 +2771,7 @@ static bool torture_samba3_rpc_spoolss(struct torture_context *torture)
struct dcerpc_binding_handle *b;
struct policy_handle server_handle, printer_handle;
const char **printers;
int num_printers;
size_t num_printers;
struct spoolss_UserLevel1 userlevel1;
char *servername;

Expand Down
2 changes: 1 addition & 1 deletion source4/torture/rpc/samr.c
Original file line number Diff line number Diff line change
Expand Up @@ -7258,7 +7258,7 @@ static bool test_GroupList(struct dcerpc_binding_handle *b,
uint32_t returned_size;
union samr_DispInfo info;

int num_names = 0;
size_t num_names = 0;
const char **names = NULL;

bool builtin_domain = dom_sid_compare(domain_sid,
Expand Down
10 changes: 5 additions & 5 deletions source4/torture/rpc/wkssvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ static bool test_NetrEnumerateComputerNames_level(struct torture_context *tctx,
struct dcerpc_pipe *p,
uint16_t level,
const char ***names,
int *num_names)
size_t *num_names)
{
NTSTATUS status;
struct wkssvc_NetrEnumerateComputerNames r;
Expand Down Expand Up @@ -666,7 +666,7 @@ static bool test_NetrAddAlternateComputerName(struct torture_context *tctx,
NTSTATUS status;
struct wkssvc_NetrAddAlternateComputerName r;
const char **names = NULL;
int num_names = 0;
size_t num_names = 0;
int i;
struct dcerpc_binding_handle *b = p->binding_handle;

Expand Down Expand Up @@ -708,7 +708,7 @@ static bool test_NetrRemoveAlternateComputerName(struct torture_context *tctx,
NTSTATUS status;
struct wkssvc_NetrRemoveAlternateComputerName r;
const char **names = NULL;
int num_names = 0;
size_t num_names = 0;
int i;
struct dcerpc_binding_handle *b = p->binding_handle;

Expand Down Expand Up @@ -781,7 +781,7 @@ static bool test_NetrSetPrimaryComputername(struct torture_context *tctx,
*/

const char **names_o = NULL, **names = NULL;
int num_names_o = 0, num_names = 0;
size_t num_names_o = 0, num_names = 0;

torture_comment(tctx, "Testing NetrSetPrimaryComputername\n");

Expand Down Expand Up @@ -887,7 +887,7 @@ static bool test_NetrRenameMachineInDomain2(struct torture_context *tctx,
struct dcerpc_pipe *p)
{
const char **names_o = NULL, **names = NULL;
int num_names_o = 0, num_names = 0;
size_t num_names_o = 0, num_names = 0;

torture_comment(tctx, "Testing NetrRenameMachineInDomain2\n");

Expand Down

0 comments on commit a62cc2c

Please sign in to comment.