<feed xmlns='http://www.w3.org/2005/Atom'>
<title>abrt.git/lib, branch 0.0.4</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>there is no nees to init nss because of creating hash</title>
<updated>2009-06-24T08:27:35+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-06-24T08:27:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=a7ddc025535b55fa24e23922ed5fd738125f0b6e'/>
<id>a7ddc025535b55fa24e23922ed5fd738125f0b6e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>minor fixes</title>
<updated>2009-06-24T08:00:58+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-06-24T08:00:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=44b4926781e2e8751488f3ae18614aa1e63e1138'/>
<id>44b4926781e2e8751488f3ae18614aa1e63e1138</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>security issues</title>
<updated>2009-06-23T14:08:14+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-06-23T14:08:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=644832e59bf2c91ed39a644c0db55a3d2d54327f'/>
<id>644832e59bf2c91ed39a644c0db55a3d2d54327f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle logs with NUL chars better</title>
<updated>2009-06-20T21:22:41+00:00</updated>
<author>
<name>Michal Schmidt</name>
<email>mschmidt@redhat.com</email>
</author>
<published>2009-06-20T21:22:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=7342d3896446deaf89ab5582da81457571e48fe6'/>
<id>7342d3896446deaf89ab5582da81457571e48fe6</id>
<content type='text'>
It is not too rare that '\0' chars appear in /var/log/messages. I saw a
real-life case where kerneloops would show a popup with the same old oops
after every login. It turned out that there were NUL chars in the log which
prevented kerneloops from seeing its marker, so it always treated the old oops
in the log as new.
This patch fixes it by always going through the whole known length of the
buffer (not stopping on NUL chars) and using less string-oriented functions in
fill_lineinfo().
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is not too rare that '\0' chars appear in /var/log/messages. I saw a
real-life case where kerneloops would show a popup with the same old oops
after every login. It turned out that there were NUL chars in the log which
prevented kerneloops from seeing its marker, so it always treated the old oops
in the log as new.
This patch fixes it by always going through the whole known length of the
buffer (not stopping on NUL chars) and using less string-oriented functions in
fill_lineinfo().
</pre>
</div>
</content>
</entry>
<entry>
<title>Use less memory</title>
<updated>2009-06-20T21:06:06+00:00</updated>
<author>
<name>Anton Arapov</name>
<email>aarapov@redhat.com</email>
</author>
<published>2009-06-20T21:06:06+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=7ea90a7e6e836257e05d2f9f6b5ad0f9aab88c23'/>
<id>7ea90a7e6e836257e05d2f9f6b5ad0f9aab88c23</id>
<content type='text'>
* backport of 14e769d7093179943015ff88d0d3bdd65b2947f7
* Author: Michal Schmidt &lt;mschmidt@redhat.com&gt;

The linepointer array is huge!:
    linepointer = calloc(buflen+1, sizeof(char*));
buflen can be as much as 32 MB, that makes it allocate 32M*8 = 256M on x86_64.

Fix it by growing the allocation dynamically as we find interesting lines in
the log.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* backport of 14e769d7093179943015ff88d0d3bdd65b2947f7
* Author: Michal Schmidt &lt;mschmidt@redhat.com&gt;

The linepointer array is huge!:
    linepointer = calloc(buflen+1, sizeof(char*));
buflen can be as much as 32 MB, that makes it allocate 32M*8 = 256M on x86_64.

Fix it by growing the allocation dynamically as we find interesting lines in
the log.
</pre>
</div>
</content>
</entry>
<entry>
<title>Really limit max size of log to read to 32 MB</title>
<updated>2009-06-20T20:37:41+00:00</updated>
<author>
<name>Michal Schmidt</name>
<email>mschmidt@redhat.com</email>
</author>
<published>2009-06-20T20:37:41+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=7035b97b4b19360d46c3190e698ac875ff99af37'/>
<id>7035b97b4b19360d46c3190e698ac875ff99af37</id>
<content type='text'>
Because of MAX/MIN confusion, the buffer size was always at least 32 MB,
instead of at most 32 MB as intended.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because of MAX/MIN confusion, the buffer size was always at least 32 MB,
instead of at most 32 MB as intended.
</pre>
</div>
</content>
</entry>
<entry>
<title>new default socket path</title>
<updated>2009-06-17T14:22:25+00:00</updated>
<author>
<name>Zdenek Prikryl</name>
<email>zprikryl@redhat.com</email>
</author>
<published>2009-06-17T14:22:25+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=f31ebd2e0aafc9404c95b8fe92a02d58216f918d'/>
<id>f31ebd2e0aafc9404c95b8fe92a02d58216f918d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added man pages to Makefile.am</title>
<updated>2009-06-16T12:12:31+00:00</updated>
<author>
<name>Daniel Novotny</name>
<email>dnovotny@dhcp-lab-180.englab.brq.redhat.com</email>
</author>
<published>2009-06-16T12:12:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=0696c26a89f921dbade8c53a0abb00e8745a5854'/>
<id>0696c26a89f921dbade8c53a0abb00e8745a5854</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>new manual pages</title>
<updated>2009-06-16T11:55:59+00:00</updated>
<author>
<name>Daniel Novotny</name>
<email>dnovotny@dhcp-lab-180.englab.brq.redhat.com</email>
</author>
<published>2009-06-16T11:55:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=a4399f13dbb85e9e64ba6e36957e46f33e293371'/>
<id>a4399f13dbb85e9e64ba6e36957e46f33e293371</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt</title>
<updated>2009-06-15T13:43:50+00:00</updated>
<author>
<name>Jiri Moskovcak</name>
<email>jmoskovc@redhat.com</email>
</author>
<published>2009-06-15T13:43:50+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/gavin/public_git/abrt.git/commit/?id=1424c0420d5d1c5468c48860a754839cbbecb6b8'/>
<id>1424c0420d5d1c5468c48860a754839cbbecb6b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
