gaim/gaim

Patch 1/4
oldstatus
2005-03-25, Stu Tomlinson
90d97d5d538e
Parents 8e8acace1997
Children 9230aa8eb647
Patch 1/4
  • +1 -1
    src/util.c
  • --- a/src/util.c Thu Mar 24 18:12:27 2005 -0500
    +++ b/src/util.c Fri Mar 25 20:18:24 2005 -0500
    @@ -1315,7 +1315,7 @@
    cdata_close_tag = "</style>";
    }
    /* Update the index and continue checking after the tag */
    - i = (str2[k] == '<')? k - 1: k;
    + i = (str2[k] == '<' || str2[k] == '\0')? k - 1: k;
    continue;
    }
    }