Make sure the len() builtin always returns an answer. Previously,
len(`') didn't return an answer. Now it returns 0. PR: bin/12942 MFC after: 5 days
This commit is contained in:
parent
2755dd7100
commit
1d3ebaf302
@ -149,8 +149,7 @@ register int td;
|
||||
* dolen - find the length of the
|
||||
* argument
|
||||
*/
|
||||
if (argc > 2)
|
||||
pbnum((argc > 2) ? strlen(argv[2]) : 0);
|
||||
pbnum((argc > 2) ? strlen(argv[2]) : 0);
|
||||
break;
|
||||
|
||||
case INCRTYPE:
|
||||
|
Loading…
Reference in New Issue
Block a user