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
8920f9ba
...
8920f9ba9d655a0df2b498586a101cd9863fe72d
authored
2005-02-27 20:13:28 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(address_aget_personal,address_aget_comments): Bugfix
1 parent
b4c656a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/address.c
mailbox/address.c
View file @
8920f9b
...
...
@@ -357,7 +357,7 @@ address_aget_personal (address_t addr, size_t no, char **buf)
status
=
ENOMEM
;
}
else
buf
=
NULL
;
*
buf
=
NULL
;
return
status
;
}
...
...
@@ -381,7 +381,7 @@ address_aget_comments (address_t addr, size_t no, char **buf)
status
=
ENOMEM
;
}
else
buf
=
NULL
;
*
buf
=
NULL
;
return
status
;
}
...
...
Please
register
or
sign in
to post a comment