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
1d9adec7
...
1d9adec7be7281104d27058fe3fdc52030ba5895
authored
2008-02-05 09:03:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Forgotten to commit yesterday
1 parent
aca3bfcc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
mailbox/mailbox.c
mailbox/mailbox.c
View file @
1d9adec
...
...
@@ -52,7 +52,16 @@ mailbox_folder_create (mu_mailbox_t mbox, const char *name,
char
*
fname
;
if
((
rc
=
mu_url_aget_path
(
mbox
->
url
,
&
fname
)))
return
rc
;
{
if
(
rc
==
MU_ERR_NOENT
)
{
fname
=
strdup
(
mu_url_to_string
(
mbox
->
url
));
if
(
!
fname
)
return
ENOMEM
;
}
else
return
rc
;
}
if
(
mu_url_is_scheme
(
mbox
->
url
,
"file"
)
||
mu_url_is_scheme
(
mbox
->
url
,
"mbox"
)
...
...
Please
register
or
sign in
to post a comment