| Index: printing/backend/win_helper.cc
|
| diff --git a/printing/backend/win_helper.cc b/printing/backend/win_helper.cc
|
| index eba284e61abeaa6912331ef9aeda6684624c905b..8bcb45e1da6df31b7baf70390d943c4d20281ceb 100644
|
| --- a/printing/backend/win_helper.cc
|
| +++ b/printing/backend/win_helper.cc
|
| @@ -367,7 +367,8 @@ std::string GetDriverInfo(HANDLE printer) {
|
| for (size_t i = 0; i < arraysize(info); ++i) {
|
| std::replace(info[i].begin(), info[i].end(), ';', ',');
|
| driver_info.append(info[i]);
|
| - driver_info.append(";");
|
| + if (i < arraysize(info) - 1)
|
| + driver_info.append(";");
|
| }
|
| return driver_info;
|
| }
|
|
|