update changelog
authorHyoyoung Chang <hyoyoung.chang@samsung.com>
Wed, 5 Jan 2011 02:39:15 +0000 (11:39 +0900)
committerHyoyoung Chang <hyoyoung.chang@samsung.com>
Wed, 5 Jan 2011 02:39:15 +0000 (11:39 +0900)
debian/changelog
src/lib/elm_entry.c

index 0a8b95e..dda72b1 100644 (file)
@@ -1,3 +1,11 @@
+elementary (1.0.0+svn.51480slp2+build84) unstable; urgency=low
+
+  * bugfix at elm_{label, entry}
+  * Git: 165.213.180.234:slp/pkgs/e/elementary
+  * Tag: elementary_1.0.0+svn.51480slp2+build84
+
+ -- Hyoyoung Chang <hyoyoung.chang@samsung.com>  Wed, 05 Jan 2011 11:36:51 +0900
+
 elementary (1.0.0+svn.51480slp2+build83) unstable; urgency=low
 
   * Package uplaod for revert
index f5d0071..b3e5170 100644 (file)
@@ -1705,7 +1705,7 @@ _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int
    srcstring = eina_strbuf_string_get(srcbuf);
    curlocater = strstr(srcstring, key);
 
-   if (curlocater == NULL)
+   if (!curlocater || !srcstring)
      {
        insertflag = 1;
      }
@@ -1736,7 +1736,7 @@ _strbuf_key_value_replace(Eina_Strbuf *srcbuf, char *key, const char *value, int
              {
                replocater = curlocater + strlen(key) + 1;
 
-               while (*replocater == ' ' || *replocater == '=')
+               while (*replocater && *replocater == ' ' || *replocater == '=')
                  replocater++;
 
                 while (*replocater && *replocater != ' ' && *replocater != '>')