Skip to content

Commit

Permalink
Drop doubtful fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Jan 19, 2025
1 parent d702114 commit d4e60f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext/com_dotnet/com_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ static void generate_dispids(php_dispatchex *disp)
zend_string *name = NULL;
zval *tmp, tmp2;
int keytype;
zend_ulong pid;
zend_long pid;

if (disp->dispid_to_name == NULL) {
ALLOC_HASHTABLE(disp->dispid_to_name);
Expand Down
2 changes: 1 addition & 1 deletion main/streams/plain_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ static int php_stdiop_cast(php_stream *stream, int castas, void **ret)
}

*(FILE**)ret = data->file;
data->fd = (int) SOCK_ERR;
data->fd = SOCK_ERR;
}
return SUCCESS;

Expand Down

0 comments on commit d4e60f6

Please sign in to comment.