-
haypo registered the marcheu sextapes project.
2009-05-19 20:49:23 UTC in marcheu sextapes
-
haypo committed patchset 1309 of module renouveau to the nouveau CVS repository, changing 1 files.
2009-03-09 21:33:19 UTC in nouveau
-
For the following SOAP request, SOAPy create an array of two strings instead of two booleans:
FalseFalse
There are two problems: "boolean" type is converted to integer Python object and SOAPpy doesn't use the attribute SOAP-ENC:arrayType="xsd:bool[2]" of tag.
I wrote a small...
2008-04-07 16:13:20 UTC in Web Services for Python
-
haypo committed patchset 1204 of module renouveau to the nouveau CVS repository, changing 1 files.
2008-03-29 02:05:48 UTC in nouveau
-
container/assets/container.css contains : ".button-group button { ... cursor: hand; ... }" which is not compliant to W3 reference. Please use "cursor: pointer;".
2007-08-16 10:23:36 UTC in YUI Library
-
Hi, I tried to register a new version of my project using my setup.py (based on Python distutils module). But it fails because of HTTP Error 302 (site moved) (I had to use tcpdump to get error, distutils doesn't support such error!!!).
Python 2.5.1c1 (Ubuntu Feisty) contacts http://www.python.org/pypi in HTTP 1.1 but site has moved to http://cheeseshop.python.org/pypi.
So I changed...
2007-07-23 09:49:58 UTC in Python Package Index
-
Hi, I rewrote IPv6 address parsing from scratch. It now supports "1:2:3:4:5:6::", "::1:2:3:4:5:6", and pass all existing tests. My new function:
https://software.inl.fr/trac/trac.cgi/browser/mirror/tools/ipy/trunk/IPy.py#L901
If it's ok for you, I can release a new version.
2007-06-27 18:58:52 UTC in Python Package Index
-
Hi,
I generated a new file which crash libexif 0.6.13. The problem is in function exif_entry_fix(): it doesn't check e->data value which is NULLL in my case.
You can reproduce the bug which attached file (fuzzed JPEG picture with EXIF metadata).
Program received signal SIGSEGV, Segmentation fault.
(gdb) where
#0 0xb7ef4ef0 in exif_get_slong (b=0x4 ...
2007-05-10 23:54:38 UTC in EXIF Tag Parsing Library
-
File Added: crash_libexif.jpg.
2007-05-09 23:36:24 UTC in EXIF Tag Parsing Library
-
Hi,
I wrote a fuzzer program and try it on all programs. I found a serious bug in your libexif library!
At libexif/exif-data.c line 186, function exif_data_load_data_entry():
/* Sanity check */
if (size < doff + s)
return;
entry->data = exif_data_alloc (data, s);
if (entry->data) {
entry->size = s;
memcpy (entry->data, d + doff, s);
}
Your code looks valid but...
2007-05-09 23:35:46 UTC in EXIF Tag Parsing Library