Skip to content

Commit 97de71b

Browse files
authored
Merge pull request #80279 from DougGregor/stdlib-remaining-memory-safety-warnings
[Standard library] Address remaining memory-safety warnings
2 parents c51e10a + 0d296b5 commit 97de71b

9 files changed

+11
-10
lines changed

stdlib/public/core/Dictionary.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ extension Dictionary {
13881388
return true
13891389
}
13901390
#else
1391-
if unsafe lhs._variant.asNative._storage === rhs._variant.asNative._storage {
1391+
if lhs._variant.asNative._storage === rhs._variant.asNative._storage {
13921392
return true
13931393
}
13941394
#endif

stdlib/public/core/DictionaryBridging.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ final internal class _SwiftDeferredNSDictionary<Key: Hashable, Value>
360360
defer { _fixLifetime(self) }
361361

362362
var stop: UInt8 = 0
363-
for bucket in unsafe native.hashTable {
363+
for unsafe bucket in unsafe native.hashTable {
364364
let key = unsafe _key(at: bucket, bridgedKeys: bridgedKeys)
365365
let value = unsafe _value(at: bucket, bridgedValues: bridgedValues)
366366
unsafe block(

stdlib/public/core/EmbeddedPrint.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ public func print(_ object: some CustomStringConvertible, terminator: StaticStri
6464
}
6565
6666
func print(_ buf: UnsafeBufferPointer<UInt8>, terminator: StaticString = "\n") {
67-
for c in buf {
67+
for unsafe c in unsafe buf {
6868
putchar(CInt(c))
6969
}
7070
var p = unsafe terminator.utf8Start
7171
while unsafe p.pointee != 0 {
7272
unsafe putchar(CInt(p.pointee))
73-
p += 1
73+
unsafe p += 1
7474
}
7575
}
7676

stdlib/public/core/Equatable.swift

+1
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ public func === (lhs: AnyObject?, rhs: AnyObject?) -> Bool {
270270
}
271271
#else
272272
@inlinable // trivial-implementation
273+
@safe
273274
public func ===<T: AnyObject, U: AnyObject>(lhs: T?, rhs: U?) -> Bool {
274275
switch (lhs, rhs) {
275276
case let (l?, r?):

stdlib/public/core/Hashing.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ internal final class __BridgingHashBuffer
142142
}
143143

144144
deinit {
145-
for bucket in unsafe header.hashTable {
145+
for unsafe bucket in unsafe header.hashTable {
146146
unsafe (firstElementAddress + bucket.offset).deinitialize(count: 1)
147147
}
148148
unsafe _fixLifetime(self)

stdlib/public/core/NativeDictionary.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ extension _NativeDictionary where Value: Equatable {
657657
if self.count != other.count { return false }
658658

659659
defer { _fixLifetime(self) }
660-
for bucket in unsafe self.hashTable {
660+
for unsafe bucket in unsafe self.hashTable {
661661
let key = self.uncheckedKey(at: bucket)
662662
let value = self.uncheckedValue(at: bucket)
663663
guard

stdlib/public/core/NativeSet.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ extension _NativeSet {
502502
if self.count != other.count { return false }
503503

504504
defer { _fixLifetime(self) }
505-
for bucket in unsafe self.hashTable {
505+
for unsafe bucket in unsafe self.hashTable {
506506
let key = self.uncheckedElement(at: bucket)
507507
let bridgedKey = _bridgeAnythingToObjectiveC(key)
508508
guard other.contains(bridgedKey) else { return false }

stdlib/public/core/RuntimeFunctionCounters.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ func _measureRuntimeFunctionCountersDiffs(
521521
_RuntimeFunctionCounters.disableRuntimeFunctionCountersUpdates()
522522
let globalCountersBefore = _GlobalRuntimeFunctionCountersState()
523523
var objectsCountersBefore: [_ObjectRuntimeFunctionCountersState] = []
524-
for object in unsafe objects {
524+
for unsafe object in unsafe objects {
525525
unsafe objectsCountersBefore.append(_ObjectRuntimeFunctionCountersState(object))
526526
}
527527
// Enable counters updates.
@@ -535,7 +535,7 @@ func _measureRuntimeFunctionCountersDiffs(
535535

536536
let globalCountersAfter = _GlobalRuntimeFunctionCountersState()
537537
var objectsCountersDiff: [_ObjectRuntimeFunctionCountersState] = []
538-
for (idx, object) in unsafe objects.enumerated() {
538+
for unsafe (idx, object) in unsafe objects.enumerated() {
539539
let objectCountersAfter = unsafe _ObjectRuntimeFunctionCountersState(object)
540540
objectsCountersDiff.append(
541541
objectsCountersBefore[idx].diff(objectCountersAfter))

stdlib/public/core/SetBridging.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ final internal class _SwiftDeferredNSSet<Element: Hashable>
197197
let bridged = unsafe __BridgingHashBuffer.allocate(
198198
owner: native._storage,
199199
hashTable: native.hashTable)
200-
for bucket in unsafe native.hashTable {
200+
for unsafe bucket in unsafe native.hashTable {
201201
let object = _bridgeAnythingToObjectiveC(
202202
native.uncheckedElement(at: bucket))
203203
unsafe bridged.initialize(at: bucket, to: object)

0 commit comments

Comments
 (0)