# HG changeset patch # User William Pitcock # Date 1192779219 18000 # Node ID 0f5fecede1c67593cc311a77a66ac100925357f1 # Parent a76b55624e51b50263fbda1ef51a2eeee04422a8 use tf_get_fieldref() in a place where a mowgli_dictionary lookup was used instead. diff -r a76b55624e51 -r 0f5fecede1c6 src/audacious/tuple_compiler.c --- a/src/audacious/tuple_compiler.c Fri Oct 19 02:20:28 2007 -0500 +++ b/src/audacious/tuple_compiler.c Fri Oct 19 02:33:39 2007 -0500 @@ -644,7 +644,7 @@ break; case OP_EXISTS: - if (mowgli_dictionary_retrieve(tuple->dict, ctx->variables[curr->var[0]]->name)) { + if (tf_get_fieldref(ctx->variables[curr->var[0]], tuple)) { if (!tuple_formatter_eval_do(ctx, curr->children, tuple, res, resmax, reslen)) return FALSE; }