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
ad08b9e5
...
ad08b9e51eed07ad326f86513e0787b46652992d
authored
2007-11-12 12:38:51 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(decode_tuple_v1_0): Allow mailbox to be NULL.
1 parent
d392c89f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
auth/sql.c
auth/sql.c
View file @
ad08b9e
...
...
@@ -362,7 +362,7 @@ decode_tuple_v1_0 (mu_sql_connection_t conn, int n,
char
*
tmp
;
if
(
mu_sql_get_column
(
conn
,
0
,
6
,
&
tmp
))
return
MU_ERR_FAILURE
;
if
((
mailbox_name
=
strdup
(
tmp
))
==
NULL
)
if
(
tmp
&&
(
mailbox_name
=
strdup
(
tmp
))
==
NULL
)
return
ENOMEM
;
}
else
if
(
mu_construct_user_mailbox_url
(
&
mailbox_name
,
name
))
...
...
Please
register
or
sign in
to post a comment