From 26cf7ecc67f882cfac295263b39c6ef3a7152b1b Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Sun, 26 Oct 2014 21:40:28 -0700 Subject: [PATCH] identical sub expressions to left and right of or... --- .../platform/projects/Session/LoginAPI/ClientCore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/external/3rd/library/platform/projects/Session/LoginAPI/ClientCore.cpp b/external/3rd/library/platform/projects/Session/LoginAPI/ClientCore.cpp index 149c7b84..a9e2caf6 100644 --- a/external/3rd/library/platform/projects/Session/LoginAPI/ClientCore.cpp +++ b/external/3rd/library/platform/projects/Session/LoginAPI/ClientCore.cpp @@ -849,7 +849,7 @@ namespace LoginAPI //////////////////////////////////////// // Validate and set input parameters // (1) sessionID - if (!sessionID || !sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) + if (!sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) return; else sessionList.push_back(sessionID); @@ -887,7 +887,7 @@ namespace LoginAPI //////////////////////////////////////// // Validate and set input parameters // (1) sessionID - if (!sessionID || !sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) + if (!sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) return; else sessionList.push_back(sessionID); @@ -1022,7 +1022,7 @@ namespace LoginAPI //////////////////////////////////////// // Validate and set input parameters // (1) sessionID - if (!sessionID || !sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) + if (!sessionID || strlen(sessionID) > SESSION_TICKET_LENGTH) return; else input.SetSessionId(sessionID);