From a54e9c379550f7901404990ea7fddb99c0188048 Mon Sep 17 00:00:00 2001
From: Monty Brandenberg <monty@lindenlab.com>
Date: Wed, 25 Apr 2012 15:47:30 -0400
Subject: [PATCH] Another fix for Mac warnings.  Uninitialized auto check.  Not
 an actual problem but this will quiet the compiler.

---
 indra/llcorehttp/_httpoprequest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcorehttp/_httpoprequest.cpp b/indra/llcorehttp/_httpoprequest.cpp
index d71ace5d574..316df8bd495 100644
--- a/indra/llcorehttp/_httpoprequest.cpp
+++ b/indra/llcorehttp/_httpoprequest.cpp
@@ -410,7 +410,7 @@ int parse_content_range_header(char * buffer,
 							   unsigned int * last,
 							   unsigned int * length)
 {
-	char * tok_state(NULL), * tok;
+	char * tok_state(NULL), * tok(NULL);
 	bool match(true);
 			
 	if (! strtok_r(buffer, ": \t", &tok_state))
-- 
GitLab