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
e93a3f65
...
e93a3f65ac5f41905f4f0cd545731d403ba5f7c3
authored
2004-02-03 13:13:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_url_path_init): Missed typecast.
1 parent
675b0afa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/mbox/url.c
mailbox/mbox/url.c
View file @
e93a3f6
...
...
@@ -273,7 +273,7 @@ _url_path_init (url_t url)
mu_scheme_autodetect_p
(
name
,
&
path
);
name
=
strdup
(
path
);
free
(
url
->
name
);
url
->
name
=
name
;
url
->
name
=
(
char
*
)
name
;
/* TYPE */
url
->
_destroy
=
url_path_destroy
;
...
...
Please
register
or
sign in
to post a comment