From: Stephan Witt Date: Mon, 20 Jul 2015 23:05:04 +0000 (+0200) Subject: Use the safer addName helper function to add the configure lock name to user support... X-Git-Tag: 2.2.0alpha1~406 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9f972ba90cad282cc036cee0e0dd2028b7b94dde;p=features.git Use the safer addName helper function to add the configure lock name to user support directory path name --- diff --git a/src/support/Package.cpp b/src/support/Package.cpp index b15879cc9f..dda5114fa1 100644 --- a/src/support/Package.cpp +++ b/src/support/Package.cpp @@ -177,7 +177,7 @@ int Package::reconfigureUserLyXDir(string const & option) const string Package::getConfigureLockName() const { - return user_support().absFileName() + ".lyx_configure_lock"; + return addName(user_support().absFileName(), ".lyx_configure_lock"); }