Skip to content

Commit ee8d161

Browse files
committed
Fix typo (missing throw statement)
1 parent 8226e19 commit ee8d161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scitokens_internal.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class SimpleCurlGet {
4242

4343
auto curl = curl_easy_init();
4444
if (!curl) {
45-
CurlException("Failed to create a new curl handle.");
45+
throw CurlException("Failed to create a new curl handle.");
4646
}
4747

4848
if (m_maxbytes > 0) {

0 commit comments

Comments
 (0)