<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/src/Hooks, branch 0.0.11</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/'/>
<entry>
<title>small fix: forgot to terminate longopts[]</title>
<updated>2009-10-31T14:55:39+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-31T14:55:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=457bb887a9787a04ccbc888d76ecf56ec767d402'/>
<id>457bb887a9787a04ccbc888d76ecf56ec767d402</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix segfault on "abrt-pyhook-helper -p X &lt;/dev/null" (use of uninitialized variiable)</title>
<updated>2009-10-31T04:12:12+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-31T04:12:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=278f6d7b6d163e4e906da5706a09d71c7ef8144e'/>
<id>278f6d7b6d163e4e906da5706a09d71c7ef8144e</id>
<content type='text'>
Converted to getopt (argp_parse is a GNUism), it's smaller now:

   text	   data	    bss	    dec	    hex	filename
   6461	   1364	     64	   7889	   1ed1	old/abrt-pyhook-helper
   6579	    876	    128	   7583	   1d9f	new/abrt-pyhook-helper

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Converted to getopt (argp_parse is a GNUism), it's smaller now:

   text	   data	    bss	    dec	    hex	filename
   6461	   1364	     64	   7889	   1ed1	old/abrt-pyhook-helper
   6579	    876	    128	   7583	   1d9f	new/abrt-pyhook-helper

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix a bug where after realloc we may scribble over uninitialized memory</title>
<updated>2009-10-31T03:35:02+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-31T03:35:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=887d928a39fc9793df6f3d69a89cb48f4a85679c'/>
<id>887d928a39fc9793df6f3d69a89cb48f4a85679c</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>src/CLI/*: fix an unterminated argv + simplifications</title>
<updated>2009-10-31T02:38:39+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-31T02:38:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=b75a8f795fc1ea7a4604c09d65d91a75ddbbbbea'/>
<id>b75a8f795fc1ea7a4604c09d65d91a75ddbbbbea</id>
<content type='text'>
The fix is:

-  const char *args[6];
-  args[0] = editor;
-  args[1] = path;
+  char *args[3];
+  args[0] = (char*)editor;
+  args[1] = (char*)path;
+  args[2] = NULL;
   run_command(args);

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The fix is:

-  const char *args[6];
-  args[0] = editor;
-  args[1] = path;
+  char *args[3];
+  args[0] = (char*)editor;
+  args[1] = (char*)path;
+  args[2] = NULL;
   run_command(args);

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt</title>
<updated>2009-10-30T22:47:27+00:00</updated>
<author>
<name>Karel Klic</name>
<email>kklic@redhat.com</email>
</author>
<published>2009-10-30T22:47:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=d0962176b885a32b1c5aecd5ac3c0d23447c3d09'/>
<id>d0962176b885a32b1c5aecd5ac3c0d23447c3d09</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/Plugins/Logger: much more sane dump format; fix misdetection of text files</title>
<updated>2009-10-30T18:17:10+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-30T18:17:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=276a9017d63445dd322f9a93ff34e67cbdf97dc9'/>
<id>276a9017d63445dd322f9a93ff34e67cbdf97dc9</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Python backtrace size limited to 1 MB</title>
<updated>2009-10-30T16:25:36+00:00</updated>
<author>
<name>Karel Klic</name>
<email>kklic@redhat.com</email>
</author>
<published>2009-10-30T16:25:36+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=d6f85d204994b7f4a7afe943f4d5fa873599cd01'/>
<id>d6f85d204994b7f4a7afe943f4d5fa873599cd01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixes based on review by Denys</title>
<updated>2009-10-30T16:12:39+00:00</updated>
<author>
<name>Karel Klic</name>
<email>kklic@redhat.com</email>
</author>
<published>2009-10-30T16:12:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=f92e5d5587e57c6319d3fd8bdd351918fad27721'/>
<id>f92e5d5587e57c6319d3fd8bdd351918fad27721</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>dumpoops: add -s option to dump results to stdout</title>
<updated>2009-10-29T00:57:07+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2009-10-29T00:57:07+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=f5f29b1aa55aba06498171ad64421424372f1682'/>
<id>f5f29b1aa55aba06498171ad64421424372f1682</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial implementation of abrt-pyhook-helper</title>
<updated>2009-10-22T11:45:41+00:00</updated>
<author>
<name>Karel Klic</name>
<email>kklic@redhat.com</email>
</author>
<published>2009-10-22T11:45:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=951fcd8e9289b285bf4a2e3f2a0cc2cc49620cd7'/>
<id>951fcd8e9289b285bf4a2e3f2a0cc2cc49620cd7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
