Displaying 4 results from an estimated 4 matches for "use_catch".
2007 Oct 26
0
8 commits - doc/swfdec-sections.txt libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_interpret.c test/trace
..._try_data_unref);
cx->throwing = FALSE;
SWFDEC_AS_VALUE_SET_UNDEFINED (&cx->throw_value);
@@ -2718,6 +2717,7 @@ swfdec_action_try (SwfdecAsContext *cx, guint action, const guint8 *data, guint
SwfdecBits bits;
TryData *try_data;
guint try_size;
+ gboolean use_finally, use_catch;
if (len <= 8) {
SWFDEC_ERROR ("With action requires a length of at least 8, but got %u",
@@ -2727,18 +2727,22 @@ swfdec_action_try (SwfdecAsContext *cx, guint action, const guint8 *data, guint
}
try_data = g_malloc0 (sizeof (TryData));
+ swfdec_action_try_data_ref (...
2016 Apr 19
3
installation of dplyr
...ackage html
test_path html
test_that html
testthat html
testthat_results html
try_again html
use_catch html
watch html
with_mock html
** building package indices
** testing if installed package can be loaded
* DONE (testthat)
Making 'packages.html' ... done
Using GitHub PAT from envvar...
2016 Apr 19
0
installation of dplyr
...html
> test_path html
> test_that html
> testthat html
> testthat_results html
> try_again html
> use_catch html
> watch html
> with_mock html
> ** building package indices
> ** testing if installed package can be loaded
> * DONE (testthat)
> Making 'packages.html' ... done
>...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
..._interpret.c b/libswfdec/swfdec_as_interpret.c
index 3defeca..3571ffb 100644
--- a/libswfdec/swfdec_as_interpret.c
+++ b/libswfdec/swfdec_as_interpret.c
@@ -2712,10 +2712,9 @@ swfdec_action_try (SwfdecAsContext *cx, guint action, const guint8 *data, guint
guint try_size;
gboolean use_finally, use_catch;
- if (len <= 8) {
+ if (len < 8) {
SWFDEC_ERROR ("With action requires a length of at least 8, but got %u",
len);
- swfdec_as_stack_pop (cx);
return;
}
@@ -2752,7 +2751,7 @@ swfdec_action_try (SwfdecAsContext *cx, guint action, const guint8 *data, guint...