Displaying 1 result from an estimated 1 matches for "action_val_free".
2007 Mar 01
0
7 commits - libswfdec/swfdec_connection.c libswfdec/swfdec_js_connection.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_js_xml.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_scriptable.c libswfdec/swfdec_scriptable.h
..._convert_to_object (a);
- b = stack_pop (context); /* property list */
- c = stack_pop (context); /* flags */
- action_val_convert_to_number (c);
- if (num_args >= 4) {
- d = stack_pop (context); /* allowFalse */
- action_val_convert_to_boolean (d);
- allowFalse = d->number;
- action_val_free (d);
- }
-
- flags = (int)c->number & 0x7;
- /* The flags appear to be 0x1 for DontEnum, 0x2 for DontDelete, and 0x4 for
- * DontWrite, though the tables I found on the web are poorly written.
- */
-
- if (ACTIONVAL_IS_NULL(b)) {
- GList *g;
-
- SWFDEC_DEBUG("%d args"...