From 09a884c85c5246d909892f80c34327529b8ad2d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 25 Nov 2018 15:11:55 +0000 Subject: [PATCH] design: refcounting: fix typo Fixes #26. --- markdown/design/MT-refcounting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/design/MT-refcounting.md b/markdown/design/MT-refcounting.md index a892fa6820..be0eb7fa6b 100644 --- a/markdown/design/MT-refcounting.md +++ b/markdown/design/MT-refcounting.md @@ -362,7 +362,7 @@ decide if we are still iterating the right list. GST_OBJECT_LOCK (lock); /* grab list and cookie */ cookie = object->list_cookie; -list = object-list; +list = object->list; while (list) { GstObject *item = GST_OBJECT (list->data); /* need to ref the item before releasing the lock */