/* goodG2B() - use goodsource and badsink */
        private void GoodG2B(HttpRequest req, HttpResponse resp)
        {
            int count = 0;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            count = 2;
            goodG2BPublicStatic = true;
            CWE400_Uncontrolled_Resource_Consumption__Params_Get_Web_for_loop_22b.GoodG2BSink(count, req, resp);
        }
        /* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2(HttpRequest req, HttpResponse resp)
        {
            int count = 0;

            count = int.MinValue; /* Initialize count */
            /* POTENTIAL FLAW: Read count from a querystring using Params.Get() */
            {
                string stringNumber = req.Params.Get("name");
                try
                {
                    count = int.Parse(stringNumber.Trim());
                }
                catch (FormatException exceptNumberFormat)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, exceptNumberFormat, "Number format exception reading count from parameter 'name'");
                }
            }
            goodB2G2PublicStatic = true;
            CWE400_Uncontrolled_Resource_Consumption__Params_Get_Web_for_loop_22b.GoodB2G2Sink(count, req, resp);
        }