search for: asname

Displaying 8 results from an estimated 8 matches for "asname".

Did you mean: sname
2007 Jun 13
1
Branch 'as' - libswfdec/swfdec_movie.c
libswfdec/swfdec_movie.c | 3 +++ 1 files changed, 3 insertions(+) New commits: diff-tree 774031e0bb34710e971ab143aac62300907486d3 (from a6c380467a9cb20fd2d151d74603f1de5637cabf) Author: Benjamin Otte <otte at gnome.org> Date: Wed Jun 13 16:34:43 2007 +0200 fix matrix calculation - 3 lines got lost in the reorg diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c
2007 Jul 03
0
Branch 'as' - 7 commits - libswfdec/swfdec_as_math.c libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_sprite_movie.c test/trace
...couldn't come up with any. diff --git a/libswfdec/swfdec_movie.c b/libswfdec/swfdec_movie.c index c0bf0df..dff211f 100644 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -466,8 +466,7 @@ swfdec_movie_set_variables (SwfdecMovie g_free (value); break; } - asname = swfdec_as_context_get_string (as->context, name); - g_free (name); + asname = swfdec_as_context_give_string (as->context, name); SWFDEC_AS_VALUE_SET_STRING (&val, swfdec_as_context_get_string (as->context, value)); g_free (value); swfdec_as_object_set_variable (a...
2007 Nov 10
0
[PATCH] swfdec: better variable parsing.
...variables) -{ - SwfdecAsObject *as; - - g_return_if_fail (SWFDEC_IS_MOVIE (movie)); - g_return_if_fail (variables != NULL); - - as = SWFDEC_AS_OBJECT (movie); - SWFDEC_DEBUG ("setting variables on %p: %s", movie, variables); - while (TRUE) { - char *name, *value; - const char *asname; - SwfdecAsValue val; - - while (*variables == '&') - variables++; - if (*variables == '\0') - break; - if (!swfdec_urldecode_one (variables, &name, &value, &variables)) { - SWFDEC_WARNING ("variables invalid at \"%s\"",...
2007 Nov 12
0
2 commits - libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_resource.c test/various
...variables) -{ - SwfdecAsObject *as; - - g_return_if_fail (SWFDEC_IS_MOVIE (movie)); - g_return_if_fail (variables != NULL); - - as = SWFDEC_AS_OBJECT (movie); - SWFDEC_DEBUG ("setting variables on %p: %s", movie, variables); - while (TRUE) { - char *name, *value; - const char *asname; - SwfdecAsValue val; - - while (*variables == '&') - variables++; - if (*variables == '\0') - break; - if (!swfdec_urldecode_one (variables, &name, &value, &variables)) { - SWFDEC_WARNING ("variables invalid at \"%s\"",...
2008 Aug 27
1
RCurl: using netrc with curlPerform
...erform("http://www.omegahat.org/RCurl/testPassword/index.html", curl=handle) # Failed attempt using ... construct curlPerform("http://www.omegahat.org/RCurl/testPassword/index.html", netrc=1) Common error message for all failed attempts: Error in mapCurlOptNames(names(.els), asNames = TRUE) : Unrecognized CURL options: Valid curl option names are listed by typing listCurlOptions() and netrc is one of the options. The mapCurlOptNames code is not available for the user to view so I'm not able to deduce anything more from the error message. Thanks, Valerie
2003 Aug 22
3
PAE removal patch for testing
...r/src/sys/i386/i386/vm86.c Fri Aug 22 02:09:00 2003 @@ -584,7 +584,7 @@ struct vm86frame *vmf; struct vm86context *vmc; { - pt_entry_t *pte = (pt_entry_t *)vm86paddr; + pt_entry_t pte = (pt_entry_t)vm86paddr; vm_paddr_t page; int i, entry, retval; diff -u -r /usr/src/sys.old/i386/include/asnames.h /usr/src/sys/i386/include/asnames.h --- /usr/src/sys.old/i386/include/asnames.h Thu Aug 21 18:35:36 2003 +++ /usr/src/sys/i386/include/asnames.h Fri Aug 22 02:07:23 2003 @@ -52,10 +52,11 @@ #ifdef __ELF__ +#define _APTD APTD +#define _APTDpde APTDpde +#define _APTmap APTmap #define...
2007 Apr 04
0
Branch 'as' - 17 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_loader.h
...variables) +{ + SwfdecAsObject *as; + + g_return_if_fail (SWFDEC_IS_MOVIE (movie)); + g_return_if_fail (variables != NULL); + + as = SWFDEC_AS_OBJECT (movie); + SWFDEC_DEBUG ("setting variables on %p: %s", movie, variables); + while (TRUE) { + char *name, *value; + const char *asname; + SwfdecAsValue val; + + if (!swfdec_urldecode_one (variables, &name, &value, &variables)) { + SWFDEC_WARNING ("variables invalid at \"%s\"", variables); + break; + } + if (*variables != '\0' && *variables != '&') {...
2007 Nov 07
0
36 commits - doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_buffer.c libswfdec/swfdec_buffer.h
...4 --- a/libswfdec/swfdec_movie.c +++ b/libswfdec/swfdec_movie.c @@ -477,11 +477,11 @@ swfdec_movie_set_variables (SwfdecMovie *movie, const char *variables) g_free (value); break; } + SWFDEC_LOG ("Set variable \"%s\" to \"%s\"", name, value); asname = swfdec_as_context_give_string (as->context, name); SWFDEC_AS_VALUE_SET_STRING (&val, swfdec_as_context_get_string (as->context, value)); g_free (value); swfdec_as_object_set_variable (as, asname, &val); - SWFDEC_LOG ("Set variable \"%s\" to \"%s...