Overview
Comment: | OFHTTPServer: Fix warning on Win64 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
372ed8b39924e85a6b9f6e66786be873 |
User & Date: | js on 2014-12-07 18:18:24 |
Other Links: | manifest | tags |
Context
2014-12-07
| ||
18:19 | Fix compilation on Win32 check-in: 258b45b81a user: js tags: trunk | |
18:18 | OFHTTPServer: Fix warning on Win64 check-in: 372ed8b399 user: js tags: trunk | |
2014-11-16
| ||
21:35 | Fix two typos in documentation check-in: 4c2dbb263c user: js tags: trunk | |
Changes
Modified src/OFHTTPServer.m from [36dd983976] to [16d942747a].
︙ | ︙ | |||
277 278 279 280 281 282 283 | [_socket release]; _socket = nil; } - (int)fileDescriptorForWriting { if (_socket == nil) | | | 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | [_socket release]; _socket = nil; } - (int)fileDescriptorForWriting { if (_socket == nil) return (int)INVALID_SOCKET; return [_socket fileDescriptorForWriting]; } @end @interface OFHTTPServer_Connection: OFObject { |
︙ | ︙ |