From: David Kalnischkies Date: Sun, 4 Mar 2012 23:21:25 +0000 (+0100) Subject: fix "(performance) Possible inefficient checking for 'R' emptiness." X-Git-Tag: 0.9.0~13^2~7 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/b4a6673c488200a1a52fd2732566ed05a4bc0dbb fix "(performance) Possible inefficient checking for 'R' emptiness." --- diff --git a/methods/http.cc b/methods/http.cc index 135771643..d2e03cfbc 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -1327,7 +1327,7 @@ int HttpMethod::Loop() after the same URI is seen twice in a queue item. */ StringVector &R = Redirected[Queue->DestFile]; bool StopRedirects = false; - if (R.size() == 0) + if (R.empty() == true) R.push_back(Queue->Uri); else if (R[0] == "STOP" || R.size() > 10) StopRedirects = true;