diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-05-23 18:57:05 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-05-23 18:57:05 (GMT) |
commit | 3f72e2c3b7ce5a83287dc136c68b7ef6d2cc66bd (patch) | |
tree | 8afd8cdb41d3b35d2cf43afda5b9825ce75d8e72 /Swiften/Elements/DiscoInfo.h | |
parent | d917be7e1f7e4c99c2d8d20cc3e54d7b6e61f333 (diff) | |
download | swift-contrib-3f72e2c3b7ce5a83287dc136c68b7ef6d2cc66bd.zip swift-contrib-3f72e2c3b7ce5a83287dc136c68b7ef6d2cc66bd.tar.bz2 |
Fixed const references to vectors.
This could potentially cause crashes (same as a previous patch).
Diffstat (limited to 'Swiften/Elements/DiscoInfo.h')
-rw-r--r-- | Swiften/Elements/DiscoInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Elements/DiscoInfo.h b/Swiften/Elements/DiscoInfo.h index d5bf64a..b73165e 100644 --- a/Swiften/Elements/DiscoInfo.h +++ b/Swiften/Elements/DiscoInfo.h @@ -90,7 +90,7 @@ namespace Swift { extensions_.push_back(form); } - const std::vector<Form::ref> getExtensions() const { + const std::vector<Form::ref>& getExtensions() const { return extensions_; } |