-
-
Notifications
You must be signed in to change notification settings - Fork 23.3k
Closed
Closed
Copy link
Milestone
Description
Godot version:
3.2.beta.custom_build. 157246a
OS/device including version:
Ubuntu 19.10
Issue description:
Using null buffer pointer in fwrite function is Undefinied Behaviour
size_t fwrite(
const void *buffer,
size_t size,
size_t count,
FILE *stream
);
and this cause this error
ERROR: store_buffer: Condition ' !p_src ' is true.
At: drivers/unix/file_access_unix.cpp:278.
It can be easily silenced but probably this is not the best solution
Steps to reproduce:
- Download "FirstPersonStarter" from Template in Project Manager
godot/scene/main/http_request.cpp
Line 358 in 24e1039
file->store_buffer(r.ptr(), chunk.size()); |
2.
Import GLTF File Katalog bez nazwy.zip
godot/core/io/resource_format_binary.cpp
Line 1538 in dec10dd
f->store_buffer(r.ptr(), len); |
wyattjsmith1