Overview
| Comment: | Corrected arithmetic on a void pointer |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
07d8b72d7de3d82130e8259c9eb90802 |
| User & Date: | rkeene on 2012-07-20 01:05:04 |
| Other Links: | manifest | tags |
Context
|
2012-07-24
| ||
| 20:53 | Removed win32 SDK files, which are now part of mingw32 (untested) check-in: c1fa623247 user: rkeene tags: trunk | |
|
2012-07-22
| ||
| 15:55 | Create new branch named "require-login-if-needed" check-in: 459f215faf user: rkeene tags: require-login-if-needed | |
|
2012-07-21
| ||
| 04:55 | Create new branch named "dodcerts-on-seperate-slot" check-in: caac1986d6 user: rkeene tags: dodcerts-on-seperate-slot | |
|
2012-07-20
| ||
| 01:05 | Corrected arithmetic on a void pointer check-in: 07d8b72d7d user: rkeene tags: trunk | |
| 01:04 | Corrected casting to for %p formatting check-in: c634e02a7f user: rkeene tags: trunk | |
Changes
Modified asn1-x509.c from [34b943034f] to [e21185aa9d].
| ︙ | ︙ | |||
362 363 364 365 366 367 368 |
/* Terminate string, in case no valid elements are found we still return a valid string */
*outbuf = '\0';
outbuf_s = outbuf;
offset = 0;
while (1) {
| | | 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
/* Terminate string, in case no valid elements are found we still return a valid string */
*outbuf = '\0';
outbuf_s = outbuf;
offset = 0;
while (1) {
read_ret = asn1_x509_read_asn1_object(((unsigned char *) whole_thing.contents) + offset, whole_thing.size - offset, ¤t_set, NULL);
if (read_ret != 0) {
break;
}
offset += current_set.size + 2;
read_ret = asn1_x509_read_asn1_object(current_set.contents, current_set.size, ¤t_seq, NULL);
|
| ︙ | ︙ |