1
Network / Small bug in network library
« on: July 04, 2009, 05:44:14 pm »
Not a big thing. Method SetURI() checks if URI starts with slash, and inserts one if not. But there is possibility to create Request object using
In this case URI string is just copied to myURI member, without any checking.
Code: [Select]
sf::Http::Request req( sf::Http::Request::Get, "" );
In this case URI string is just copied to myURI member, without any checking.