mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
More robust way of building on 10.6 for a 10.5+ target.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6314 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
2
Externals/SFML/src/SFML/Network/Ftp.cpp
vendored
2
Externals/SFML/src/SFML/Network/Ftp.cpp
vendored
@ -489,7 +489,7 @@ Ftp::Response Ftp::GetResponse()
|
||||
if (In >> Code)
|
||||
{
|
||||
// Extract the separator
|
||||
char Sep;
|
||||
char Sep = 0;
|
||||
In.get(Sep);
|
||||
|
||||
// The '-' character means a multiline response
|
||||
|
2
Externals/SFML/src/SFML/Network/Http.cpp
vendored
2
Externals/SFML/src/SFML/Network/Http.cpp
vendored
@ -260,7 +260,7 @@ void Http::Response::FromString(const std::string& Data)
|
||||
}
|
||||
|
||||
// Extract the status code from the first line
|
||||
int StatusCode;
|
||||
int StatusCode = 0;
|
||||
if (In >> StatusCode)
|
||||
{
|
||||
myStatus = static_cast<Status>(StatusCode);
|
||||
|
Reference in New Issue
Block a user