Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
63622e3a
...
63622e3ad9e04d435f01061a609ea265150db6a7
authored
2002-12-10 15:02:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Initialize automatic variable.
1 parent
d531c1a9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
imap4d/util.c
libsieve/tests.c
mail/util.c
mailbox/address.c
mailbox/file_stream.c
imap4d/util.c
View file @
63622e3
...
...
@@ -966,7 +966,7 @@ util_localname ()
{
char
*
name
;
int
name_len
=
256
;
int
status
;
int
status
=
1
;
struct
hostent
*
hp
;
name
=
malloc
(
name_len
);
...
...
libsieve/tests.c
View file @
63622e3
...
...
@@ -242,7 +242,7 @@ sieve_test_envelope (sieve_machine_t mach, list_t args, list_t tags)
int
sieve_test_size
(
sieve_machine_t
mach
,
list_t
args
,
list_t
tags
)
{
int
rc
;
int
rc
=
1
;
sieve_runtime_tag_t
*
tag
=
NULL
;
size_t
size
;
...
...
mail/util.c
View file @
63622e3
...
...
@@ -83,7 +83,7 @@ util_do_command (const char *c, ...)
int
argc
=
0
;
char
**
argv
=
NULL
;
int
status
=
0
;
function_t
*
command
;
function_t
*
command
=
NULL
;
int
exec
=
1
;
char
*
cmd
=
NULL
;
va_list
ap
;
...
...
mailbox/address.c
View file @
63622e3
...
...
@@ -330,7 +330,7 @@ address_format_string (address_t addr, char *buf, size_t buflen)
int
address_aget_personal
(
address_t
addr
,
size_t
no
,
char
**
buf
)
{
int
status
;
int
status
=
0
;
address_t
subaddr
;
if
(
addr
==
NULL
)
...
...
@@ -354,7 +354,7 @@ address_aget_personal (address_t addr, size_t no, char **buf)
int
address_aget_comments
(
address_t
addr
,
size_t
no
,
char
**
buf
)
{
int
status
;
int
status
=
0
;
address_t
subaddr
;
if
(
addr
==
NULL
)
...
...
mailbox/file_stream.c
View file @
63622e3
...
...
@@ -186,7 +186,7 @@ _stdin_file_read (stream_t stream, char *optr, size_t osize,
return
stream_read
(
fs
->
cache
,
optr
,
osize
,
offset
,
pnbytes
);
else
if
(
offset
>
fs_offset
)
{
int
status
;
int
status
=
0
;
size_t
n
,
left
=
offset
-
fs_offset
+
1
;
char
*
buf
=
malloc
(
left
);
if
(
!
buf
)
...
...
Please
register
or
sign in
to post a comment