1
0
Fork 0
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:
Teodor Madan 2013-07-11 11:59:25 +03:00
parent 835a0c7b20
commit d2b0007232

View file

@ -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$
}