mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 01:45:33 +02:00
Bug 412471 - Incorrect handling of empty string as program argument in
debug mode Change-Id: I73f993f2c7855f0d657b418ec6c864c88078a6c8
This commit is contained in:
parent
835a0c7b20
commit
d2b0007232
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ public class MICommand<V extends MIInfo> implements ICommand<V> {
|
|||
}
|
||||
|
||||
// an empty parameter can be passed with two single quotes
|
||||
if (value.isEmpty()) {
|
||||
if (builder.length() == 0) {
|
||||
builder.append("''"); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue