search for: kanal5

Displaying 4 results from an estimated 4 matches for "kanal5".

2007 Nov 12
0
3 commits - libswfdec/swfdec_player.c test/trace
...100644 --- a/test/trace/loadvars-decode-5.swf.trace +++ b/test/trace/loadvars-decode-5.swf.trace @@ -21,3 +21,185 @@ a = c = d = e decode = +>>> id=mplayer&javascriptid=mplayer&frontcolor=0xFFFFFF&backcolor=0x000000&enablejs=true&largecontrols=false&file=http://kanal5.se/c/ext/k5video/playlist?selectType=playlist-name%26selectWord=Mazda%26selectType2=playlist-name%26selectWord2=Fraga Olle 1107&bufferlength=6&displayheight=168&height=168&width=225&autostart=false&repeat=list&shuffle=false&overstretch=fit&volume=80&rotatetim...
2007 Nov 03
1
a couple of swfdec patches.
...they seem to work in my minimal testing. ;) Ran into this use-after-free... http://www.fatal.se/tmp/swf/swfdec-use-after-free.diff (attached). While looking at misparsing of variables in the url... Maybe this one is not ok, but the current code is too strict (and fails on sites like http://www.kanal5.se flash in upper right corner, and others): http://www.fatal.se/tmp/swf/swfdec-nonstrict-variable-parsing.diff (attached). (... and can't the url formdata encoded string be UTF-8? the urldecode helpers can't handle utf-8 if I read them correctly.) Have a nice weekend! -- Regards, Andre...
2007 Nov 10
0
[PATCH] swfdec: better variable parsing.
Use swfdec_as_object_decode for parsing variables passed in webpages to flash. swfdec_movie_set_variables (and friends) can't stuff like an url being passed in the value of a variable and other things. Pages which where broken included the flash at the upper right corner of http://www.kanal5.se and the presentation of houses for sale at http://www.svenskfast.se. Solution: use swfdec_as_object_decode and kill off swfdec_movie_set_variables, swfdec_urldecode_one_string, swfdec_urldecode_one and the flawed testcase in test/various/urlencode.c. --- Since the segfault where just fixed in...
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
...as_object_decode for parsing variables passed in webpages to flash. swfdec_movie_set_variables (and friends) can't stuff like an url being passed in the value of a variable and other things. Pages which where broken included the flash at the upper right corner of http://www.kanal5.se and the presentation of houses for sale at http://www.svenskfast.se. Solution: use swfdec_as_object_decode and kill off swfdec_movie_set_variables, swfdec_urldecode_one_string, swfdec_urldecode_one and the flawed testcase in test/various/urlencode.c. diff --git a/libswfdec/...