remove unneeded conditional
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 2ae0e12..c793e07 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -548,8 +548,9 @@
       (*ctx->Driver.DeleteTexture)(ctx, ss->Default1DArray);
    if (ss->Default2DArray)
       (*ctx->Driver.DeleteTexture)(ctx, ss->Default2DArray);
-   if (ss)
-      _mesa_free(ss);
+
+   _mesa_free(ss);
+
    return GL_FALSE;
 }