Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
585e45d6
Commit
585e45d6
authored
Aug 31, 2005
by
Josh Coalson
Browse files
fix bad use of g_strconcat()
parent
38892870
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugin_xmms/http.c
View file @
585e45d6
...
...
@@ -484,7 +484,7 @@ static int http_connect (gchar *url_, gboolean head, guint64 offset)
flac_cfg
.
stream
.
use_udp_channel
?
udpspace
:
""
);
if
(
offset
&&
!
head
)
{
gchar
*
temp_dead
=
temp
;
temp
=
g_str
concat
(
"%sRange: %ll-
\r\n
"
,
temp
,
offset
);
temp
=
g_str
dup_printf
(
"%sRange: %ll
u
-
\r\n
"
,
temp
,
offset
);
fprintf
(
stderr
,
"%s"
,
temp
);
g_free
(
temp_dead
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment