<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libvformat/src, branch master</title>
<subtitle>A small, portable library for accessing vformat objects eg VCARD.</subtitle>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/'/>
<entry>
<title>vf_parser: fix memory corruption due to incorrect pointer</title>
<updated>2013-02-20T18:00:52+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2013-02-20T18:00:52+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=785ac6a450c901b5f8a32573e446926dd8b2e502'/>
<id>785ac6a450c901b5f8a32573e446926dd8b2e502</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix base64 decoding for multi-line data</title>
<updated>2013-02-20T17:03:42+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2013-02-20T17:03:42+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=d86c2a34bdaa37dfd07c8ded8a19afbfc1066949'/>
<id>d86c2a34bdaa37dfd07c8ded8a19afbfc1066949</id>
<content type='text'>
The base64 decoder assumed that all data passed to it is a complete
base64 blob. However due to the nature of different encoding schemes
vformat data can also be spanned over multiple lines, usually prefixed
by one or more spaces. The problem arises when a base64 line is broken
in a non-by-4-dividable manner. We fix this by storing a remainder if
the base64 data is not dividable by 4 and prepend it to the next decode
operation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The base64 decoder assumed that all data passed to it is a complete
base64 blob. However due to the nature of different encoding schemes
vformat data can also be spanned over multiple lines, usually prefixed
by one or more spaces. The problem arises when a base64 line is broken
in a non-by-4-dividable manner. We fix this by storing a remainder if
the base64 data is not dividable by 4 and prepend it to the next decode
operation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid library versioning for win32</title>
<updated>2013-02-10T21:47:33+00:00</updated>
<author>
<name>Martin Szulecki</name>
</author>
<published>2013-02-10T21:47:33+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=507f3f8939f23f5616f303782a455659eee28355'/>
<id>507f3f8939f23f5616f303782a455659eee28355</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add soname versioning for supported systems</title>
<updated>2013-02-10T21:47:02+00:00</updated>
<author>
<name>Martin Szulecki</name>
</author>
<published>2013-02-10T21:47:02+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=7d20b8b632da36d2dfcfc6ca75f3f4766b933829'/>
<id>7d20b8b632da36d2dfcfc6ca75f3f4766b933829</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed win32 shared lib creation</title>
<updated>2013-02-10T21:28:49+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2013-02-10T21:27:58+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=1b096ae6bff0a28f952ac91f2882587ab3f19228'/>
<id>1b096ae6bff0a28f952ac91f2882587ab3f19228</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix errors returned by -Werror=format-security</title>
<updated>2013-02-10T19:19:24+00:00</updated>
<author>
<name>Thomas Preud'homme</name>
</author>
<published>2013-02-10T19:19:24+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=cf5a100b347f7be6bbddf8adced2733a010b7040'/>
<id>cf5a100b347f7be6bbddf8adced2733a010b7040</id>
<content type='text'>
Option -Werror=format-security of gcc returns several error with regards
to szEndOfLine. Using "\r\n" instead of the ascii codes 0x0D, 0x0A and
0x00 avoid the error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Option -Werror=format-security of gcc returns several error with regards
to szEndOfLine. Using "\r\n" instead of the ascii codes 0x0D, 0x0A and
0x00 avoid the error.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove leading space when unfolding</title>
<updated>2013-02-10T19:14:12+00:00</updated>
<author>
<name>Daniele Forsi</name>
</author>
<published>2013-02-10T19:14:12+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=ea5c8334de82d6e9f0705e8a2c4a3ab0b29731ad'/>
<id>ea5c8334de82d6e9f0705e8a2c4a3ab0b29731ad</id>
<content type='text'>
According to RFC 2425 paragraph 5.8.1, the leading whitespace on folded lines
must be removed when unfolding happens.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to RFC 2425 paragraph 5.8.1, the leading whitespace on folded lines
must be removed when unfolding happens.
</pre>
</div>
</content>
</entry>
<entry>
<title>Copy common/types.h to vformat/vf_iface.h</title>
<updated>2013-02-10T19:09:14+00:00</updated>
<author>
<name>Mathias Palm</name>
</author>
<published>2013-02-10T19:09:14+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=0b61fda9ab740a100f8f49f2bd0ed7468c79f55c'/>
<id>0b61fda9ab740a100f8f49f2bd0ed7468c79f55c</id>
<content type='text'>
Copy the content of common/types.h into vformat/vf_iface.h.
Keep common/types.h because some files depends on it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Copy the content of common/types.h into vformat/vf_iface.h.
Keep common/types.h because some files depends on it.
</pre>
</div>
</content>
</entry>
<entry>
<title>initial commit of 1.13 sources</title>
<updated>2013-02-10T19:06:08+00:00</updated>
<author>
<name>Nikias Bassen</name>
</author>
<published>2013-02-10T19:06:08+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.sukimashita.com/libvformat.git/commit/?id=d3a53b82aa57f5090d95b69e6f567b06eb544df9'/>
<id>d3a53b82aa57f5090d95b69e6f567b06eb544df9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
