xmlconfig: remove an unused-but-set variable
authorMarek Olšák <maraeo@gmail.com>
Fri, 15 Jul 2011 19:09:02 +0000 (21:09 +0200)
committerMarek Olšák <maraeo@gmail.com>
Fri, 15 Jul 2011 19:48:29 +0000 (21:48 +0200)
I hate gcc 4.6 already.

src/mesa/drivers/dri/common/xmlconfig.c

index 0226b38c4fc8ecd9f1601c8dfc40801094a58089..77967ac2a439fdff4c743dbca918ff25940eff7b 100644 (file)
@@ -765,9 +765,9 @@ static void parseDeviceAttr (struct OptConfData *data, const XML_Char **attr) {
 /** \brief Parse attributes of an application element. */
 static void parseAppAttr (struct OptConfData *data, const XML_Char **attr) {
     GLuint i;
-    const XML_Char *name = NULL, *exec = NULL;
+    const XML_Char *exec = NULL;
     for (i = 0; attr[i]; i += 2) {
-       if (!strcmp (attr[i], "name")) name = attr[i+1];
+       if (!strcmp (attr[i], "name")) /* not needed here */;
        else if (!strcmp (attr[i], "executable")) exec = attr[i+1];
        else XML_WARNING("unknown application attribute: %s.", attr[i]);
     }