summaryrefslogtreecommitdiffstats
path: root/src/uri.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2014-03-18 18:30:41 +0000
committerJazzyNico <nicoduf@yahoo.fr>2014-03-18 18:30:41 +0000
commitbb21b145819e999294e711058b26d97e0527a646 (patch)
treea106db30d7eab36f639cc507418328b866c060f4 /src/uri.cpp
parentFix weighted removal of attributes from style in merge extension. (diff)
downloadinkscape-bb21b145819e999294e711058b26d97e0527a646.tar.gz
inkscape-bb21b145819e999294e711058b26d97e0527a646.zip
Fix for Bug #1291546 (Linking color profile from Document properties dialog crashes Inkscape).
Fixed bugs: - https://launchpad.net/bugs/1291546 (bzr r13165)
Diffstat (limited to 'src/uri.cpp')
-rw-r--r--src/uri.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/uri.cpp b/src/uri.cpp
index e81d108c9..2eaf4ecc1 100644
--- a/src/uri.cpp
+++ b/src/uri.cpp
@@ -149,6 +149,9 @@ gchar *URI::to_native_filename(gchar const* uri) throw(BadURIException)
* and thus redundent. Caller is expected to check against the document's path.
*/
const std::string URI::getFullPath(std::string const base) const {
+ if (!_impl->getPath()) {
+ return "";
+ }
std::string path = std::string(_impl->getPath());
// Calculate the absolute path from an available base
if(!base.empty() && !path.empty() && path[0] != '/') {