Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix uninitialized value in cs-animation-editing.c #3

Open
bpeel opened this issue Aug 14, 2012 · 1 comment
Open

bugfix uninitialized value in cs-animation-editing.c #3

bpeel opened this issue Aug 14, 2012 · 1 comment

Comments

@bpeel
Copy link
Member

bpeel commented Aug 14, 2012

(issue originally reported on bugzilla.clutter-project.org by Antoine Roguez)

While playing with cluttersmith (creating + playing an animation and then
resizing the animated actor), I had a crash which, after investigation with
valgrind was caused by using an uninitialized value in
ensure_temporal_animator_handle (cs-animation-editing.c +419).

Please find enclosed a patch to fix the bug

@bpeel
Copy link
Member Author

bpeel commented Aug 14, 2012

--- src/cs-animation-editing.c.ori 2010-09-13 18:44:32.579612530 +0200
+++ src/cs-animation-editing.c 2010-09-13 18:39:00.436737095 +0200
@@ -416,7 +416,7 @@
gdouble progress,
gint key_no)
{

  • KeyHandle *handle;
  • KeyHandle *handle = NULL;
    GList *h;
    for (h = temporal_handles; h; h=h->next)
    {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant