Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Replaced free() with fossil_free() for pedantic correctness. Minor related doc fix. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9f98585e89d3d7fd7d68d2518cf1afae |
| User & Date: | stephan 2012-07-13 18:01:37.740 |
Context
|
2012-07-13
| ||
| 18:37 | Fixed setting of FOSSIL_ENABLE_JSON vis-a-vis autosetup. check-in: 00b86a85be user: stephan tags: trunk | |
| 18:01 | Replaced free() with fossil_free() for pedantic correctness. Minor related doc fix. check-in: 9f98585e89 user: stephan tags: trunk | |
| 16:56 | help text updates. check-in: 91a740e82a user: stephan tags: trunk | |
Changes
Changes to src/printf.c.
| ︙ | ︙ | |||
751 752 753 754 755 756 757 |
blob_append(pBlob,spaces,etSPACESIZE);
nspace -= etSPACESIZE;
}
if( nspace>0 ) blob_append(pBlob,spaces,nspace);
}
}
if( zExtra ){
| | | | 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
blob_append(pBlob,spaces,etSPACESIZE);
nspace -= etSPACESIZE;
}
if( nspace>0 ) blob_append(pBlob,spaces,nspace);
}
}
if( zExtra ){
fossil_free(zExtra);
}
}/* End for loop over the format string */
return errorflag ? -1 : count;
} /* End of function */
/*
** Print into memory obtained from fossil_malloc().
*/
char *mprintf(const char *zFormat, ...){
va_list ap;
char *z;
va_start(ap,zFormat);
z = vmprintf(zFormat, ap);
va_end(ap);
|
| ︙ | ︙ |