Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions vkext/vkext-rpc-tl-serialization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,7 @@ bool store_function2(VK_ZVAL_API_P arr, zval *fetcher) {
END_TIMER(store_function2)
return false;
}
fprintf(stderr, "typedStore user-defined success\n");
// when using fetcher, tl_current_function_name will not be accessed. But we set it anyway in case we forgot something.
tl_current_function_name = "typedStore";
END_TIMER(store_function2)
Expand Down Expand Up @@ -1116,8 +1117,7 @@ zval *fetch_function(struct tl_tree *T) {
if (*_arr) {
zval_dtor (*_arr);
}
*_arr = make_query_result_or_error(NULL, {TL_ERROR_RESPONSE_SYNTAX, "Can't parse response"});
return *_arr;
return make_query_result_or_error(NULL, {TL_ERROR_RESPONSE_SYNTAX, "Can't parse response"});
}
}

Expand Down
2 changes: 1 addition & 1 deletion vkext/vkext.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "vkext/vk_zend.h"

#define VKEXT_VERSION "1.02"
#define VKEXT_VERSION "1.02-upload-crash-4"

#define VKEXT_NAME "vk_extension"

Expand Down
Loading