Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix crash for negative uvcUnit integers (Issue #42) #57

Merged
merged 1 commit into from
Apr 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CameraController/UVC/Models/Controls/UVCControl.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class UVCControl {
}

func getDataFor(type: UVCRequestCodes, length: Int) -> Int {

guard uvcUnit >= 0 else { return 0 }

var value: Int = 0

let requestType = USBmakebmRequestType(direction: kUSBIn, type: kUSBClass, recipient: kUSBInterface)
Expand Down Expand Up @@ -60,6 +63,9 @@ class UVCControl {
}

func setData(value: Int, length: Int) -> Bool {

guard uvcUnit >= 0 else { return false }

var ref = value

let requestType = USBmakebmRequestType(direction: kUSBOut, type: kUSBClass, recipient: kUSBInterface)
Expand Down