| cchelpbot | NOTICE: SF.net SVN: cctools: [6105] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6105 http://cctools.svn.sourceforge.net/cctools/?rev=6105&view=rev Author: jakin44 Date: 2007-07-02 17:05:07 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Let's clean up these leaks and open file handles. Modified Paths: -------------- | 00:08 |
|---|---|---|
| cchelpbot | NOTICE: liblicense/trunk/modules/io/sidecar_xmp.c Modified: liblicense/trunk/modules/io/sidecar_xmp.c =================================================================== --- liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-02 19:03:13 UTC (rev 6104) +++ liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:05:07 UTC (rev 6105) @@ -117,6 +117,7 @@ | 00:08 |
| cchelpbot | NOTICE: get_contents_stdio(f,&buffer,&len); XmpPtr xmp = xmp_new(buffer,len); + free(buffer); char *uri_string = NULL; XmpStringPtr license_uri = xmp_string_new(); @@ -130,6 +131,8 @@ return uri_string; } + free(sidecar); + return NULL; } @@ -149,6 +152,7 @@ get_contents_stdio(f,&buffer,&len); xmp = xmp_new(buffer,len); + fclose(f); } if ( !xmp ) { @@ | 00:08 |
| cchelpbot | NOTICE: -170,8 +174,8 @@ success = false; } + free(sidecar); xmp_string_free(xmp_string); - xmp_free(xmp); return success; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. | 00:08 |
| jakin | rejon, what goes in the copyright header when attributing to CC? | 00:12 |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6106] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6106 http://cctools.svn.sourceforge.net/cctools/?rev=6106&view=rev Author: jakin44 Date: 2007-07-02 17:10:08 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Actually, that wasn't an open file handle Modified Paths: -------------- | 00:12 |
| cchelpbot | NOTICE: liblicense/trunk/modules/io/sidecar_xmp.c Modified: liblicense/trunk/modules/io/sidecar_xmp.c =================================================================== --- liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:05:07 UTC (rev 6105) +++ liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:10:08 UTC (rev 6106) @@ -149,10 +149,9 @@ if ( | 00:12 |
| cchelpbot | NOTICE: f ) { char *buffer; size_t len; - get_contents_stdio(f,&buffer,&len); + get_contents_stdio(f,&buffer,&len); /* closes the file */ xmp = xmp_new(buffer,len); - fclose(f); } if ( !xmp ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. | 00:12 |
| bovinity | woah | 00:12 |
| rejon | oh, looks like the svn commits are back turned on :) | 00:13 |
| jakin | surprise | 00:15 |
| * tannewt holds his breath | 00:16 | |
| tannewt | where is the message? | 00:19 |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6107] liblicense/trunk: Revision: 6107 http://cctools.svn.sourceforge.net/cctools/?rev=6107&view=rev Author: tannewt Date: 2007-07-02 17:16:38 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Plugged all leaks (hopefully) in library (not bindings) and added license headers. Modified Paths: -------------- | 00:19 |
| cchelpbot | NOTICE: liblicense/trunk/Makefile.am liblicense/trunk/acinclude.m4 liblicense/trunk/autogen.sh liblicense/trunk/bindings/Makefile.am liblicense/trunk/bindings/python/Makefile.am liblicense/trunk/bindings/python/liblicense.c liblicense/trunk/bindings/python/tests/test.py liblicense/trunk/configure.ac liblicense/trunk/liblicense.h | 00:19 |
| cchelpbot | NOTICE: liblicense/trunk/licenses/Makefile.am liblicense/trunk/licenses/creativecommons.org_licenses_by-nd_2.0_.rdf liblicense/trunk/licenses/creativecommons.org_licenses_by-nd_2.0_za_.rdf liblicense/trunk/list.c liblicense/trunk/list.h liblicense/trunk/module_wrangler.c liblicense/trunk/module_wrangler.h liblicense/trunk/modules/Makefile.am | 00:19 |
| cchelpbot | NOTICE: liblicense/trunk/modules/config/Makefile.am liblicense/trunk/modules/config/flat_file.c liblicense/trunk/modules/io/Makefile.am liblicense/trunk/modules/io/exempi.c liblicense/trunk/modules/io/sidecar_xmp.c liblicense/trunk/modules/io/stub.c liblicense/trunk/read_license.c liblicense/trunk/read_license.h liblicense/trunk/system_default.c | 00:19 |
| cchelpbot | NOTICE: liblicense/trunk/system_default.h liblicense/trunk/system_licenses.c liblicense/trunk/system_licenses.h liblicense/trunk/tests/Makefile.am liblicense/trunk/tests/default_test.c liblicense/trunk/tests/list_test.c liblicense/trunk/tests/mw_test.c liblicense/trunk/tests/read_test.c liblicense/trunk/tests/test.c liblicense/trunk/utils/Makefile.am | 00:20 |
| cchelpbot | NOTICE: liblicense/trunk/utils/license.c liblicense/trunk/write_license.c liblicense/trunk/write_license.h Added Paths: ----------- liblicense/trunk/tests/info_test.c liblicense/trunk/tests/write_test.c Modified: liblicense/trunk/Makefile.am =================================================================== --- liblicense/trunk/Makefile.am 2007-07-03 | 00:20 |
| tannewt | haha | 00:20 |
| cchelpbot | NOTICE: 00:10:08 UTC (rev 6106) +++ liblicense/trunk/Makefile.am 2007-07-03 00:16:38 UTC (rev 6107) @@ -1,3 +1,20 @@ +# Creative Commons has made the contents of this file +# available under a CC-GNU-GPL license: +# +# http://creativecommons.org/licenses/GPL/2.0/ +# +# A copy of the full license can be found as part of this +# distribution in the file | 00:20 |
| cchelpbot | NOTICE: COPYING. +# +# You may use the liblicense software in accordance with the +# terms of that license. You agree that you are solely +# responsible for your use of the liblicense software and you +# represent and warrant to Creative Commons that your use +# of the liblicense software will comply with the CC-GNU-GPL. +# +# Copyright 2007, Creative | 00:20 |
| cchelpbot | NOTICE: Commons, www.creativecommons.org. +# Copyright 2007, Jason Kivlighn. + SUBDIRS = . xdgmime licenses modules bindings tests utils libdir = @libdir@/liblicense Modified: liblicense/trunk/acinclude.m4 =================================================================== --- liblicense/trunk/acinclude.m4 2007-07-03 00:10:08 UTC (rev 6106) +++ | 00:20 |
| cchelpbot | NOTICE: liblicense/trunk/acinclude.m4 2007-07-03 00:16:38 UTC (rev 6107) @@ -1,3 +1,20 @@ +# Creative Commons has made the contents of this file +# available under a CC-GNU-GPL license: +# +# http://creativecommons.org/licenses/GPL/2.0/ +# +# A copy of the full license can be found as part of this +# distribution in the file COPYING. +# +# You may use the | 00:20 |
| *** cchelpbot has joined #cc | 00:20 | |
| * tannewt laughs | 00:20 | |
| rejon | hahahahah | 00:20 |
| tannewt | what can I say, I've been working hard | 00:20 |
| jakin | you killed him... | 00:20 |
| rejon | yah, want that work to go noticed | 00:21 |
| rejon | no he is already back | 00:21 |
| rejon | cchelpbot is not a bitch | 00:21 |
| cchelpbot | rejon: Error: "is" is not a valid command. | 00:21 |
| jakin | true... | 00:21 |
| bovinity | hah | 00:21 |
| rejon | hahahaha | 00:21 |
| rejon | damn! | 00:21 |
| bovinity | oh it's on now. | 00:21 |
| tannewt | cchelpbot, status | 00:22 |
| cchelpbot | tannewt: I am connected to freenode as cchelpbot. | 00:22 |
| tannewt | hes fine | 00:23 |
| jakin | he's tough | 00:24 |
| jakin | tannewt, you check sidecar_xmp.c again for leaks? | 00:25 |
| tannewt | nope | 00:26 |
| tannewt | I'm in livecd mode now | 00:26 |
| jakin | alright | 00:26 |
| jakin | just curious | 00:26 |
| tannewt | you can ;-) | 00:26 |
| tannewt | run lt-test_read or _write | 00:27 |
| jakin | i'm in tracker mode | 00:27 |
| tannewt | hehe | 00:28 |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User talk:Augustine Fou <http://wiki.creativecommons.org/User_talk:Augustine_Fou> | 00:38 |
| jakin | hmm, i don't even have valgrind | 00:40 |
| rejon | what! | 00:40 |
| rejon | valgrind rulez | 00:40 |
| *** bovinity has quit IRC | 00:45 | |
| jakin | too much python recently | 00:50 |
| jakin | (before the summer) | 00:50 |
| tannewt | hehe | 00:51 |
| *** _rrr has quit IRC | 00:51 | |
| *** tvol has quit IRC | 00:52 | |
| *** zwnj has quit IRC | 00:58 | |
| *** tannewt has quit IRC | 00:59 | |
| *** zwnj has joined #cc | 01:00 | |
| *** cameronparkins has joined #cc | 01:05 | |
| *** luisv has joined #cc | 01:20 | |
| *** miamiphp has quit IRC | 01:29 | |
| *** cameronparkins has quit IRC | 01:34 | |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6108] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6108 http://cctools.svn.sourceforge.net/cctools/?rev=6108&view=rev Author: jakin44 Date: 2007-07-02 18:26:32 -0700 (Mon, 02 Jul 2007) Log Message: ----------- That's the last of the leaks in my code... honest... Modified Paths: -------------- | 01:34 |
| cchelpbot | NOTICE: liblicense/trunk/modules/io/sidecar_xmp.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. | 01:34 |
| *** rejon has quit IRC | 01:38 | |
| *** cameronparkins has joined #cc | 01:40 | |
| *** rejon has joined #cc | 02:18 | |
| *** cameronparkins_ has joined #cc | 02:18 | |
| *** cameronparkins has quit IRC | 02:19 | |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6109] ccoer/trunk/www/templates/about.tpl.php: Revision: 6109 http://cctools.svn.sourceforge.net/cctools/?rev=6109&view=rev Author: mlinksva Date: 2007-07-02 19:22:28 -0700 (Mon, 02 Jul 2007) Log Message: ----------- mere verbiage Modified Paths: -------------- ccoer/trunk/www/templates/about.tpl.php This was sent by the | 02:26 |
| cchelpbot | NOTICE: SourceForge.net collaborative development platform, the world's largest Open Source development site. | 02:26 |
| *** zwnj has quit IRC | 03:08 | |
| *** jakin has quit IRC | 03:12 | |
| *** _rrr has joined #cc | 03:50 | |
| *** _rrr_ has joined #cc | 03:53 | |
| *** __shawn has joined #cc | 03:58 | |
| *** _rrr has quit IRC | 04:09 | |
| *** _rrr has joined #cc | 04:15 | |
| *** _rrr_ has quit IRC | 04:15 | |
| *** luisv has quit IRC | 04:23 | |
| *** _rrr has quit IRC | 04:28 | |
| paulproteus | I look forward to valgrinding that library. | 04:45 |
| *** _rrr has joined #cc | 04:45 | |
| *** _shawn_ has joined #cc | 04:56 | |
| *** __shawn has quit IRC | 05:00 | |
| *** brylie has joined #cc | 05:28 | |
| *** _rrr_ has joined #cc | 05:31 | |
| *** _rrr has quit IRC | 05:31 | |
| *** _rrr_ has left #cc | 05:31 | |
| *** kristallpirat has quit IRC | 05:52 | |
| *** _shawn_ has quit IRC | 06:01 | |
| *** cameronparkins_ has quit IRC | 06:57 | |
| *** __shawn has joined #cc | 07:06 | |
| *** __shawn has quit IRC | 07:07 | |
| *** sama has joined #cc | 07:21 | |
| *** skyfaller has left #cc | 07:34 | |
| *** brylie has quit IRC | 07:35 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Zapping musik <http://wiki.creativecommons.org/Zapping_musik> | 07:35 |
| *** rejon has quit IRC | 07:51 | |
| *** libervisco has joined #cc | 08:18 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Creative Commons Metadata <http://wiki.creativecommons.org/Creative_Commons_Metadata> | 09:11 |
| *** libervisco has quit IRC | 09:23 | |
| *** zwnj has joined #cc | 09:49 | |
| *** e-star has joined #cc | 09:55 | |
| *** e-star has quit IRC | 10:10 | |
| *** e-star has joined #cc | 10:16 | |
| *** zwnj has quit IRC | 10:45 | |
| *** libervisco has joined #cc | 10:50 | |
| *** libervisco has quit IRC | 11:32 | |
| *** kristallpirat has joined #cc | 11:33 | |
| *** libervisco has joined #cc | 12:19 | |
| *** luisv has joined #cc | 12:22 | |
| *** e-star has quit IRC | 12:24 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Music Podcasts <http://wiki.creativecommons.org/Music_Podcasts> | 12:26 |
| *** e-star has joined #cc | 12:27 | |
| *** zwnj has joined #cc | 12:45 | |
| *** luisv is now known as lu|afk | 12:46 | |
| *** lu|afk is now known as luisv | 13:03 | |
| *** zwnj has quit IRC | 13:21 | |
| *** gavinbaker has joined #cc | 13:44 | |
| *** libervisco has quit IRC | 13:48 | |
| *** nathany has joined #cc | 14:35 | |
| *** libervisco has joined #cc | 14:48 | |
| *** sama has quit IRC | 15:30 | |
| *** e-star_ has joined #cc | 15:36 | |
| *** e-star has quit IRC | 15:36 | |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6110] i18n/trunk: Revision: 6110 http://cctools.svn.sourceforge.net/cctools/?rev=6110&view=rev Author: nyergler Date: 2007-07-03 08:40:53 -0700 (Tue, 03 Jul 2007) Log Message: ----------- Removing incorrect translation. Modified Paths: -------------- i18n/trunk/i18n/icommons-de.po i18n/trunk/i18n/icommons-de_AT.po | 15:45 |
| cchelpbot | NOTICE: i18n/trunk/i18n/icommons-de_CH.po Removed Paths: ------------- i18n/trunk/data/de/util.Generic.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. | 15:45 |
| *** liberfiasco has joined #cc | 15:48 | |
| *** libervisco has quit IRC | 15:49 | |
| *** liberfiasco is now known as libervislowfi | 15:50 | |
| *** libervislowfi is now known as libervisco | 16:00 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User talk:Lombokglobal <http://wiki.creativecommons.org/User_talk:Lombokglobal> | 16:03 |
| *** sama has joined #cc | 16:09 | |
| *** cameronparkins has joined #cc | 16:13 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Embedded Metadata <http://wiki.creativecommons.org/Embedded_Metadata> || CcWiki:Administrators <http://wiki.creativecommons.org/CcWiki:Administrators> | 16:13 |
| *** cameronparkins has quit IRC | 16:17 | |
| *** bse has joined #cc | 16:23 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: CcWiki talk:Administrators <http://wiki.creativecommons.org/CcWiki_talk:Administrators> | 16:23 |
| *** tvol has joined #CC | 16:23 | |
| *** tannewt has joined #cc | 16:30 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Liblicense <http://wiki.creativecommons.org/Liblicense> | 16:45 |
| *** sama has quit IRC | 17:13 | |
| *** cameronparkins has joined #cc | 17:13 | |
| *** _rrr has joined #cc | 17:14 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn> || Documentation <http://wiki.creativecommons.org/Documentation> || User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn> || User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn> | 17:19 |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6111] ccwordpress/trunk/www/legalcode/GPL_2.0.html: Revision: 6111 http://cctools.svn.sourceforge.net/cctools/?rev=6111&view=rev Author: bse Date: 2007-07-03 10:25:01 -0700 (Tue, 03 Jul 2007) Log Message: ----------- actually redirect to gpl 2.0 Modified Paths: -------------- ccwordpress/trunk/www/legalcode/GPL_2.0.html This | 17:31 |
| cchelpbot | NOTICE: was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. | 17:31 |
| *** bse is now known as bovinity | 17:32 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: TestSMW <http://wiki.creativecommons.org/TestSMW> | 17:39 |
| *** abhay has joined #cc | 17:49 | |
| *** tannewt has quit IRC | 18:01 | |
| *** brylie has joined #cc | 18:03 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Special:Log/delete <http://wiki.creativecommons.org/Special:Log/delete> || Special:Log/protect <http://wiki.creativecommons.org/Special:Log/protect> || Special:Log/delete <http://wiki.creativecommons.org/Special:Log/delete> || Special:Log/protect <http://wiki.creativecommons.org/Special:Log/protect> || Special:Log/block <http://wiki.creativecommons.org/Special:Log/block> || Image <http://wiki.creativecommons.org/Image> | 18:03 |
| *** tannewt has joined #cc | 18:04 | |
| *** libervisco has quit IRC | 18:13 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Alex vmg <http://wiki.creativecommons.org/Alex_vmg> | 18:23 |
| *** brylie has quit IRC | 18:48 | |
| cchelpbot | New news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Education <http://wiki.creativecommons.org/Education> | 18:58 |
| *** luisv has quit IRC | 19:13 | |
| *** papyromancer has joined #cc | 19:15 | |
| *** tannewt has quit IRC | 19:29 | |
| *** abhay has quit IRC | 19:29 | |
| *** tannewt has joined #cc | 19:29 | |
| *** gavinbaker has quit IRC | 19:29 | |
| *** papyromancer has left #cc | 19:33 | |
| *** luisv has joined #cc | 19:58 | |
| *** jakin has joined #cc | 20:01 | |
| *** luisv has quit IRC | 20:26 | |
| *** e-star_ has quit IRC | 21:04 | |
| *** e-star has joined #cc | 21:07 | |
| *** jakin has quit IRC | 21:19 | |
| *** poningru has quit IRC | 21:19 | |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6112] license_xsl/trunk: Revision: 6112 http://cctools.svn.sourceforge.net/cctools/?rev=6112&view=rev Author: nyergler Date: 2007-07-03 14:18:05 -0700 (Tue, 03 Jul 2007) Log Message: ----------- Translation improvements: * Removed CC maintained copy of SimpleTal * Added explicit dependency on SimpleTal * Generate correct | 21:19 |
| cchelpbot | NOTICE: wrapper script for translate at buildout time. Modified Paths: -------------- license_xsl/trunk/setup.py Added Paths: ----------- license_xsl/trunk/licensexsl_tools/translate.py Removed Paths: ------------- license_xsl/trunk/i18n/simpletal/ license_xsl/trunk/i18n/translate.py This was sent by the SourceForge.net collaborative development platform, | 21:19 |
| cchelpbot | NOTICE: the world's largest Open Source development site. | 21:19 |
| *** jakin has joined #cc | 21:20 | |
| *** poningru has joined #cc | 21:20 | |
| *** kristallpirat has quit IRC | 21:25 | |
| cchelpbot | NOTICE: SF.net SVN: cctools: [6113] ccwordpress/trunk/www/legalcode: Revision: 6113 http://cctools.svn.sourceforge.net/cctools/?rev=6113&view=rev Author: mlinksva Date: 2007-07-03 15:04:04 -0700 (Tue, 03 Jul 2007) Log Message: ----------- pre-launch Added Paths: ----------- ccwordpress/trunk/www/legalcode/by-nc-nd_3.0_nl.html | 22:04 |
| cchelpbot | NOTICE: ccwordpress/trunk/www/legalcode/by-nc-sa_3.0_nl.html ccwordpress/trunk/www/legalcode/by-nc_3.0_nl.html ccwordpress/trunk/www/legalcode/by-nd_3.0_nl.html ccwordpress/trunk/www/legalcode/by-sa_3.0_nl.html ccwordpress/trunk/www/legalcode/by_3.0_nl.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open | 22:04 |
| cchelpbot | NOTICE: Source development site. | 22:04 |
| *** __shawn has joined #cc | 22:07 | |
| *** __shawn has quit IRC | 22:42 | |
| *** e-star has quit IRC | 23:12 | |
| *** e-star has joined #cc | 23:12 | |
| *** e-star has quit IRC | 23:12 | |
| *** e-star has joined #cc | 23:23 | |
| *** nathany has quit IRC | 23:35 | |
| *** e-star_ has joined #cc | 23:43 | |
| *** e-star has quit IRC | 23:44 | |
Generated by irclog2html.py 2.3 by Marius Gedminas - find it at mg.pov.lt!