/* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2(HttpRequest req, HttpResponse resp)
        {
            string data = null;

            /* POTENTIAL FLAW: Read data from a querystring using Params.Get */
            data = req.Params.Get("name");
            goodB2G2PublicStatic = true;
            CWE89_SQL_Injection__Web_Params_Get_Web_ExecuteNonQuery_22b.GoodB2G2Sink(data, req, resp);
        }