diff options
author | Tom Hacohen <tom@stosb.com> | 2012-07-31 07:34:27 +0000 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2012-07-31 07:34:27 +0000 |
commit | ab7104e4ae421826564097a7380c7aad26f7fbab (patch) | |
tree | 92240dd000a38d864e934d1add0a12e5dbdc1461 /legacy/eobj | |
parent | 4540fa9d0f163e0a3b598debeebd79eea2818ac2 (diff) |
Eo: Also fix the case when the chain is not allocated.
Continuation to previous commit.
SVN revision: 74619
Diffstat (limited to 'legacy/eobj')
-rw-r--r-- | legacy/eobj/src/lib/eo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/eobj/src/lib/eo.c b/legacy/eobj/src/lib/eo.c index 5e95291854..d2e8f322da 100644 --- a/legacy/eobj/src/lib/eo.c +++ b/legacy/eobj/src/lib/eo.c | |||
@@ -288,7 +288,7 @@ _eo_kls_itr_next(const Eo_Class *orig_kls, Eo_Kls_Itr *cur, Eo_Kls_Itr *prev_sta | |||
288 | while (*kls_itr) | 288 | while (*kls_itr) |
289 | { | 289 | { |
290 | const op_type_funcs *fsrc = _dich_func_get(*kls_itr, op); | 290 | const op_type_funcs *fsrc = _dich_func_get(*kls_itr, op); |
291 | if (!fsrc->func) | 291 | if (!fsrc || !fsrc->func) |
292 | { | 292 | { |
293 | kls_itr++; | 293 | kls_itr++; |
294 | continue; | 294 | continue; |