We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b3618 commit e9f0e11Copy full SHA for e9f0e11
src/svn.cpp
@@ -523,7 +523,10 @@ int SvnRevision::fetchRevProps()
523
svn_string_t *svndate = (svn_string_t*)apr_hash_get(revprops, "svn:date", APR_HASH_KEY_STRING);
524
svn_string_t *svnlog = (svn_string_t*)apr_hash_get(revprops, "svn:log", APR_HASH_KEY_STRING);
525
526
- log = svnlog ? svnlog->data : 0;
+ if (svnlog)
527
+ log = svnlog->data;
528
+ else
529
+ log.clear();
530
authorident = svnauthor ? identities.value(svnauthor->data) : QByteArray();
531
epoch = svndate ? get_epoch(svndate->data) : 0;
532
if (authorident.isEmpty()) {
0 commit comments