diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-04-26 14:57:13 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-04-26 14:57:13 +0000 |
commit | fb5f7106dc87b995ee282a207a8f6237ada042b3 (patch) | |
tree | 9d540eecc58f96301db2697f81194b84c10fdb1f | |
parent | 604828e8d5c8f792d0b3c88c080c8e9057aa6258 (diff) | |
download | gdk-pixbuf-fb5f7106dc87b995ee282a207a8f6237ada042b3.tar.gz |
Fix optimization that was correct for the use here, but completely
Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (strstr_len): Fix optimization that
was correct for the use here, but completely incorrect
in general.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 6 | ||||
-rw-r--r-- | gtk/gtkentry.c | 2 |
8 files changed, 43 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 57bfe229b..0ca83d2ef 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> + + * gtk/gtkentry.c (strstr_len): Fix optimization that + was correct for the use here, but completely incorrect + in general. + Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size() diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 84af9d3c7..644c4c4c5 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -1724,7 +1724,7 @@ strstr_len (const char *haystack, return (char *)p; next: - p += needle_len; + p++; } } |