mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
neutrino use check empty() instead of length() or size()
Origin commit data
------------------
Branch: ni/coolstream
Commit: 8023a6317b
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-01-03 (Sat, 03 Jan 2015)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -179,7 +179,7 @@ CUPnPDevice::CUPnPDevice(std::string url)
|
||||
if (!strcmp(node->GetType(),"URLBase"))
|
||||
{
|
||||
urlbase = std::string(node->GetData());
|
||||
if ((urlbase.length() > 0) && (urlbase[urlbase.length()-1] == '/'))
|
||||
if ((!urlbase.empty() ) && (urlbase[urlbase.length()-1] == '/'))
|
||||
urlbase.erase(urlbase.length()-1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user