Added check to avoid out of bounds access
This commit is contained in:
@@ -746,7 +746,7 @@ Glib::ustring BatchQueue::calcAutoFileNameBase (const Glib::ustring& origFileNam
|
|||||||
if (origFileName[0] == '/') {
|
if (origFileName[0] == '/') {
|
||||||
pa.push_back ("/" + da[0]);
|
pa.push_back ("/" + da[0]);
|
||||||
} else if (origFileName[0] == '\\') {
|
} else if (origFileName[0] == '\\') {
|
||||||
if (origFileName[1] == '\\') {
|
if (origFileName.size() > 1 && origFileName[1] == '\\') {
|
||||||
pa.push_back ("\\\\" + da[0]);
|
pa.push_back ("\\\\" + da[0]);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user