Skip to content

Commit 40f15c8

Browse files
authored
src: remove duplicate words (#8493)
1 parent 40651f6 commit 40f15c8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/burp/restore.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1898,7 +1898,7 @@ void get_array(BurpGlobals* tdgbl, burp_rel* relation, UCHAR* record_buffer)
18981898
int elements_written = 1;
18991899
end_ranges = field->fld_ranges + 2 * field->fld_dimensions;
19001900
//
1901-
// Here is the important work. Calculate the the bounds to be written
1901+
// Here is the important work. Calculate the bounds to be written
19021902
// so that the resulting slice is a rectangular/square slice.
19031903
// For a 2 dimensional array of size 1..N, 1..M, which is partially
19041904
// filled, we have already calculated the dims of last element. Say

src/common/enc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ static int des_setkey(unsigned char* key)
637637

638638
/*
639639
* Encrypt (or decrypt if num_iter < 0) the 8 chars at "in" with abs(num_iter)
640-
* iterations of DES, using the the given 24-bit salt and the pre-computed key
640+
* iterations of DES, using the given 24-bit salt and the pre-computed key
641641
* schedule, and store the resulting 8 chars at "out" (in == out is permitted).
642642
*
643643
* NOTE: the performance of this routine is critically dependent on your

src/dsql/DdlNodes.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12309,7 +12309,7 @@ void GrantRevokeNode::checkGrantorCanGrantRelation(thread_db* tdbb, jrd_tra* tra
1230912309
status_exception::raise(Arg::PrivateDyn(175) << relationName.c_str());
1231012310
}
1231112311

12312-
// Verify the the input field exists.
12312+
// Verify the input field exists.
1231312313

1231412314
if (fieldName.hasData())
1231512315
{

src/gpre/std/gpre_meta.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1804,7 +1804,7 @@ static void get_array(gpre_dbb* database, const TEXT* field_name, gpre_fld* fiel
18041804
field->fld_dtype = dtype_blob;
18051805
field->fld_flags |= FLD_blob;
18061806
field->fld_length = 8;
1807-
// CVC: Someone allocated the the max size inside the ary structure,
1807+
// CVC: Someone allocated the max size inside the ary structure,
18081808
// so the dynamic length is irrelevant to create the array_block.
18091809
field_dimensions = F.RDB$DIMENSIONS;
18101810
fb_assert(field_dimensions <= MAX_ARRAY_DIMENSIONS);

src/jrd/Collation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ class MatchesMatcher
595595
private:
596596
// Return true if a string (p1, l1) matches a given pattern (p2, l2).
597597
// The character '?' in the pattern may match any single character
598-
// in the the string, and the character '*' may match any sequence
598+
// in the string, and the character '*' may match any sequence
599599
// of characters.
600600
//
601601
// Wide SCHAR version operates on short-based buffer,

src/lock/lock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ void LockManager::acquire_shmem(SRQ_PTR owner_offset)
11451145
#endif //USE_SHMEM_EXT
11461146

11471147
// If we were able to acquire the MUTEX, but there is an prior owner marked
1148-
// in the the lock table, it means that someone died while owning
1148+
// in the lock table, it means that someone died while owning
11491149
// the lock mutex. In that event, lets see if there is any unfinished work
11501150
// left around that we need to finish up.
11511151

0 commit comments

Comments
 (0)