String insertion was broken if you wanted to insert at the begining (index '0') of a string.

This commit is contained in:
valeski%netscape.com 1998-09-04 18:49:50 +00:00
parent 9756611cdc
commit e77dfab87e
4 changed files with 4 additions and 4 deletions

View File

@ -927,7 +927,7 @@ PRInt32 nsString::Right(nsString& aCopy,PRInt32 aCount) {
*/
PRInt32 nsString::Insert(nsString& aCopy,PRInt32 anOffset,PRInt32 aCount) {
aCount=(aCount>aCopy.mLength) ? aCopy.mLength : aCount; //don't try to copy more than you are given
if(0<anOffset) {
if(0<=anOffset) {
if(aCount>0) {
//1st optimization: If you're inserting at end, then simply append!

View File

@ -927,7 +927,7 @@ PRInt32 nsString::Right(nsString& aCopy,PRInt32 aCount) {
*/
PRInt32 nsString::Insert(nsString& aCopy,PRInt32 anOffset,PRInt32 aCount) {
aCount=(aCount>aCopy.mLength) ? aCopy.mLength : aCount; //don't try to copy more than you are given
if(0<anOffset) {
if(0<=anOffset) {
if(aCount>0) {
//1st optimization: If you're inserting at end, then simply append!

View File

@ -927,7 +927,7 @@ PRInt32 nsString::Right(nsString& aCopy,PRInt32 aCount) {
*/
PRInt32 nsString::Insert(nsString& aCopy,PRInt32 anOffset,PRInt32 aCount) {
aCount=(aCount>aCopy.mLength) ? aCopy.mLength : aCount; //don't try to copy more than you are given
if(0<anOffset) {
if(0<=anOffset) {
if(aCount>0) {
//1st optimization: If you're inserting at end, then simply append!

View File

@ -927,7 +927,7 @@ PRInt32 nsString::Right(nsString& aCopy,PRInt32 aCount) {
*/
PRInt32 nsString::Insert(nsString& aCopy,PRInt32 anOffset,PRInt32 aCount) {
aCount=(aCount>aCopy.mLength) ? aCopy.mLength : aCount; //don't try to copy more than you are given
if(0<anOffset) {
if(0<=anOffset) {
if(aCount>0) {
//1st optimization: If you're inserting at end, then simply append!