On May 28, 2010, at 1:11 AM, Kim, Albert wrote:

> Hi,
>
> We are compiling sqlite 3.6.23.1 with the SQLITE_OMIT_WSD compile  
> time flag turned on.  We are using the amalgamation.   We found that  
> this didn't completely eliminate the writable static data in our  
> binary, and some investigation led me to this static variable:
>
> SQLITE_PRIVATE VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){
>  static VdbeOp dummy;
>
> Is this is a known issue?

That variable will never be written to. A pointer to it
may be returned to the caller, but the caller will only
read, never modify the contents of the structure.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to